├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib └── stream-player.js ├── package.json ├── src └── stream-player.coffee └── test └── all.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/stream-player'); 2 | -------------------------------------------------------------------------------- /lib/stream-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/lib/stream-player.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/package.json -------------------------------------------------------------------------------- /src/stream-player.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/src/stream-player.coffee -------------------------------------------------------------------------------- /test/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-gillett/node-stream-player/HEAD/test/all.js --------------------------------------------------------------------------------