https://reactronica.com - website/docs/examples
React audio components for making music in the browser.
React treats UI as a function of state. What if React’s declarative programming model could be applied to music as well?
This library aims to treat music as a function of state, rendering sound instead of UI. Visual components live side by side with Reactronica, sharing the same state and elegantly kept in sync.
Uses ToneJS under the hood. Inspired by React Music.
Warning: Highly experimental. APIs will change.
$ npm install --save reactronica toneNote: Use React version >= 16.8 as Hooks are used internally.
import React from 'react';
import { Song, Track, Instrument, Effect } from 'reactronica';
const Example = () => {
return (
// Top level component must be the Song, with Tracks nested inside
<Song tempo={90} isPlaying={true}>
<Track
// Array of several types
steps={[
// Note in string format
'C3',
// Object with note and duration
{ note: 'C3', duration: 0.5 },
{ note: 'D3', duration: 0.5 },
// Array of strings for chords
['C3', 'G3'],
null,
null,
// Array of objects for chords
[
{ note: 'C3', duration: 0.5 },
{ note: 'G3', duration: 0.5 },
],
null,
]}
// Chain effects by putting them in an array
effects={[
<Effect type="feedbackDelay" />,
<Effect type="distortion" />,
]}
volume={80}
pan={0}
// Callback for every tick
onStepPlay={(step, index) => {
doSomething(step, index);
}}
>
<Instrument type="polySynth" />
</Track>
<Track>
<Instrument
type="sampler"
samples={{
C3: 'path/to/kick.mp3',
D3: 'path/to/snare.mp3',
E3: 'path/to/hihat.mp3',
}}
// Add some notes here to play
notes={[{ name: 'C3' }]}
/>
</Track>
</Song>
);
};This component wraps around all Reactronica components, providing top level control of the audio.
tempo- Speed or pace of the song. Measured in beats per minute.isPlaying- Whether the song is playing or not. Defaults tofalse.
Tracks make up the layers of audio within a Song. Each individual Track has independent volume, pan, steps and effects.
volume- Volume of trackpan- Panning of tracksteps- An array of notes to playeffects- An array of<Effect />componentsonStepPlay- Callback that runs on every step
Should be wrapped by a Track and becomes its audio source.
type- Instrument type,AMSynth | duoSynth | FMSynth | membraneSynth | monoSynth | polySynth | sampler | synthnotes- An array of notes to trigger Instrument, useful for auditioning sounds or live performance.samples- Only forsamplerinstrument type
Audio effects such as feedbackDelay, distortion and freeverb. Applied to a Track, with multiple Effects able to be added.
type- Effect type,feedbackDelay | distortion | freeverb
# Start Reactronica component build watch
$ npm start
# To run example page, in new terminal:
$ cd example
# Link local version of Reactronica to example
$ npm link ../node_modules/react
# Start up!
$ npm start
# If you get a babel-eslint issue, create a .env file with SKIP_PREFLIGHT_CHECK=true in ./example- Tried to migrate library to Typescript, however having issues with
rollup-plugin-typescriptbeing too strict while bundling. (branchjest-typescript- 26/12/19). - Tone installed as dependency due to
Module not found: Can't resolve 'tone' in '/Users/kcheung/Development/unkleho/reactronica/dist'issue inwebsite/. Keep as both dependency and peer for now. - Latest Tone (13.4.9) has this issue
Cannot assign to read only property 'listener' of object '#<AudioContext>'due tohttps://stackoverflow.com/questions/55039122/why-does-tone-js-not-play-nice-in-a-svelte-component. Tone cannot be bundled with Reactronica and has to be a peer dependency for now. - Both Reactronica and example/ have their own test config. Would prefer if Reactronica took care of all tests, however react-scripts only allows testing within a src/ dir. Moving to jest and babel/@core etc is required. (3/6/19)
- If you get
Hooks can only be called inside the body of a function component., have a look at facebook/react#14721. Try going into the examples folder and runningnpm link ../node_modules/react.
- https://tonejs.github.io/
- https://github.com/FormidableLabs/react-music
- https://github.com/transitive-bullshit/create-react-library
- https://github.com/crabacus/the-open-source-drumkit for the drum sounds
MIT © unkleho