Flow control library for Web Audio API.
npm install audio-node-flowFlow control library for Web Audio API.
```
npm install audio-node-flow
Flow control
source -> nodeA -> nodeB -> nodeC -> nodeD -> destination
-> nodeE -> destination
`js`
var AudioNodeFlow = require("audio-node-flow").AudioNodeFlow;
new AudioNodeFlow(source)
.connect(nodeA)
.sequence([nodeB, nodeC])
.connectAll([nodeD, nodeE])
.connect(context.destination);
``
npm test
1. Fork it!
2. Create your feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request :D
MIT