-
Notifications
You must be signed in to change notification settings - Fork 987
Installation
If Tone.js is included in the page, a global variable named Tone
will be added to the window
.
Internally, Tone uses import
/export
for dependency management. This allows the library to be used with <script type="module">
.
You can include the build file (which is available from one of the links above) like any other dependency using either AMD or CommonJS style:
require(["Tone"], function(Tone){
var synth = new Tone.MonoSynth();
//...etc
or with CommonJS:
var MonoSynth = require("Tone").MonoSynth;
var synth = new MonoSynth();
Using individual files with a module loader can bring your package size down significantly since it will only include the modules used in your code. You'll have to familiarize yourself with Tone.js' directory structure since files have to be referenced with their full path.
To use the individual files, you'll need a require
framework which supports AMD like RequireJS, webpack, or deAMDify for browserify.
The path to the root Tone folder needs to be in the search path so that internal dependencies can resolve.
require.config({
baseUrl: "./base",
paths: {
"Tone" : "path/to/Tone.js/Tone"
}
});
require(["Tone/core/Transport"], function(Transport){
//...
module.exports = {
resolve: {
root: __dirname,
// for webpack 1:
modulesDirectories : ["path/to/Tone.js/"],
// for webpack 2:
modules : ["path/to/Tone.js/"]
},
//...
After Tone.js is added as a module resolve path, individual files can be specified like so
import Transport from 'Tone/core/Transport';
import Volume from 'Tone/component/Volume';
If you have XCode installed on your Mac, you should be able to get the examples running with the following steps: Download the .zip file from github: https://github.com/Tonejs/Tone.js/archive/dev.zip
The file should unzip automatically, so then in a Terminal window go into the directory:
$ cd Tone.js-dev
and run the commands:
$ npm install
...
$ npm run build
Then you need to run a webserver in the directory to serve the files
$ python -m SimpleHTTPServer 8000
(note, you have to be in the Tone.js-dev directory when you run the python command)
Then, from a browser visit the URL: localhost:8000/examples
and you should see the examples.
footer