Create music with JavaScript and Node.js!
npm install scribbletune
SCRIBBLETUNE

Use simple JavaScript Strings and Arrays to generate rhythms and musical patterns. Directly use the names of scales or chords in your code to get arrays which you can mash up using Array methods in ways you hadn't imagined before! Create clips of musical ideas and export MIDI files which you can import in _Ableton Live, Reason, GarageBand_ or any music creation software that accepts MIDI files.
``bash`
npm install scribbletune
javascript
const scribble = require('scribbletune');
const clip = scribble.clip({
notes: scribble.scale('C4 major'),
pattern: 'x'.repeat(7) + '_'
});scribble.midi(clip, 'c-major.mid');
`
You can use Scribbletune even in the browser with Tone.js!. There are a couple of ways to do this. A quick and dirty way is to make sure to pull in Tone.js followed by the latest browser version of Scribbletune.
`html
`This will expose a global object called
scribble which you can directly use to run the methods from Scribbletune in conjunction with Tone.jsThe recommended way for the browser, however, is to import it like this
`javascript
const scribble = require('scribbletune/browser');
``Visit scribbletune.com for documentation, tutorials and examples! Listen to music generated with Scribbletune on Soundcloud.