├── .env.example ├── .gitignore ├── .npmrc ├── .prettierignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── examples └── index.html ├── helpers ├── BufferFunc.js ├── MaskWritableStream.js ├── UnmaskReadableStream.js └── constants.js ├── index.js ├── package.json ├── server.mjs └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | PORT= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # .npmrc 2 | engine-strict=true 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/README.md -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/examples/index.html -------------------------------------------------------------------------------- /helpers/BufferFunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/helpers/BufferFunc.js -------------------------------------------------------------------------------- /helpers/MaskWritableStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/helpers/MaskWritableStream.js -------------------------------------------------------------------------------- /helpers/UnmaskReadableStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/helpers/UnmaskReadableStream.js -------------------------------------------------------------------------------- /helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/helpers/constants.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/package.json -------------------------------------------------------------------------------- /server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/server.mjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/node-sockets/HEAD/yarn.lock --------------------------------------------------------------------------------