├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── example ├── index.html ├── lorem.txt ├── script.js └── server.js ├── package.json ├── src ├── codes.json └── index.js └── test ├── index.spec.js └── mocha.opts /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/README.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/example/index.html -------------------------------------------------------------------------------- /example/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/example/lorem.txt -------------------------------------------------------------------------------- /example/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/example/script.js -------------------------------------------------------------------------------- /example/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/example/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/package.json -------------------------------------------------------------------------------- /src/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/src/codes.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baygeldin/ws-streamify/HEAD/test/mocha.opts --------------------------------------------------------------------------------