├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── Procfile ├── README.md ├── app ├── routes.js └── socket.js ├── package.json ├── public ├── assets │ ├── scripts │ │ └── main.js │ └── styles │ │ └── main.css └── index.html └── server.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/README.md -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/app/socket.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/public/assets/scripts/main.js -------------------------------------------------------------------------------- /public/assets/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/public/assets/styles/main.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/public/index.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pskrunner14/node-live-stream-server/HEAD/server.js --------------------------------------------------------------------------------