├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── dist ├── binding.gyp └── package.json ├── make.bat ├── src ├── addon.cpp ├── addon.h ├── extension.cpp ├── http.h └── uws.js └── tests └── autobahn.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/README.md -------------------------------------------------------------------------------- /dist/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/dist/binding.gyp -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/dist/package.json -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/make.bat -------------------------------------------------------------------------------- /src/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/src/addon.cpp -------------------------------------------------------------------------------- /src/addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/src/addon.h -------------------------------------------------------------------------------- /src/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/src/extension.cpp -------------------------------------------------------------------------------- /src/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/src/http.h -------------------------------------------------------------------------------- /src/uws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/src/uws.js -------------------------------------------------------------------------------- /tests/autobahn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/uws/HEAD/tests/autobahn.js --------------------------------------------------------------------------------