Skip to content

collective-soundworks/soundworks-plugin-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@soundworks/plugin-[name]

soundworks plugin template project.

Table of Contents

Installation

npm install @soundworks/plugin-[name] --save

Example

A working example can be found in the https://github.com/collective-soundworks/soundworks-examples repository.

Usage

Server installation

Registering the plugin

// index.js
import { Server } from '@soundworks/core/server';
import plugin[Name]Factory from '@soundworks/plugin-[name]/server';

const server = new Server();
server.pluginManager.register('[name]', plugin[Name]Factory, {
  // default to `.data/scripts`
  directory: 'scripts',
}, []);

Requiring the plugin

// MyExperience.js
import { AbstractExperience } from '@soundworks/core/server';

class MyExperience extends AbstractExperience {
  constructor(server, clientType) {
    super(server, clientType);
    // require plugin in the experience
    this.[name] = this.require('[name]');
  }
}

Client installation

Registering the plugin

// index.js
import { Client } from '@soundworks/core/client';
import plugin[Name]Factory from '@soundworks/plugin-[name]/client';

const client = new Client();
client.pluginManager.register('[name]', plugin[Name]Factory, {}, []);

Requiring the plugin

// MyExperience.js
import { Experience } from '@soundworks/core/client';

class MyExperience extends Experience {
  constructor(client) {
    super(client);
    // require plugin in the experience
    this.[name] = this.require('[name]');
  }
}

Additional Documentation

Credits

The code has been initiated in the framework of the WAVE and CoSiMa research projects, funded by the French National Research Agency (ANR).

License

BSD-3-Clause

About

template project for starting the development of new soundworks plugins

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published