├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src └── index.ts ├── test └── demo.html └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/test/demo.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGastby/supa-simple-socket/HEAD/tsconfig.json --------------------------------------------------------------------------------