├── .gitignore ├── LICENSE ├── README.md ├── conf.json ├── docs ├── index.html ├── module-node-liveosc-Clip.html ├── module-node-liveosc-Device.html ├── module-node-liveosc-LiveOSC.html ├── module-node-liveosc-Return.html ├── module-node-liveosc-Song.html ├── module-node-liveosc-Track.html ├── module-node-liveosc.html ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── generate-docs.sh ├── index.js ├── lib ├── clip.js ├── device.js ├── return.js ├── song.js └── track.js ├── package.json └── repl.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/README.md -------------------------------------------------------------------------------- /conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/conf.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/module-node-liveosc-Clip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc-Clip.html -------------------------------------------------------------------------------- /docs/module-node-liveosc-Device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc-Device.html -------------------------------------------------------------------------------- /docs/module-node-liveosc-LiveOSC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc-LiveOSC.html -------------------------------------------------------------------------------- /docs/module-node-liveosc-Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc-Return.html -------------------------------------------------------------------------------- /docs/module-node-liveosc-Song.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc-Song.html -------------------------------------------------------------------------------- /docs/module-node-liveosc-Track.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc-Track.html -------------------------------------------------------------------------------- /docs/module-node-liveosc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/module-node-liveosc.html -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /generate-docs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | jsdoc -d docs -c conf.json README.md 3 | wicked 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/index.js -------------------------------------------------------------------------------- /lib/clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/lib/clip.js -------------------------------------------------------------------------------- /lib/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/lib/device.js -------------------------------------------------------------------------------- /lib/return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/lib/return.js -------------------------------------------------------------------------------- /lib/song.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/lib/song.js -------------------------------------------------------------------------------- /lib/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/lib/track.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/package.json -------------------------------------------------------------------------------- /repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinchak/node-liveosc/HEAD/repl.js --------------------------------------------------------------------------------