├── .gitignore ├── README.md ├── eslint.yaml ├── hapi-plugin-websocket.d.ts ├── hapi-plugin-websocket.js ├── package.json └── sample-server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/hapi-plugin-websocket/HEAD/README.md -------------------------------------------------------------------------------- /eslint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/hapi-plugin-websocket/HEAD/eslint.yaml -------------------------------------------------------------------------------- /hapi-plugin-websocket.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/hapi-plugin-websocket/HEAD/hapi-plugin-websocket.d.ts -------------------------------------------------------------------------------- /hapi-plugin-websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/hapi-plugin-websocket/HEAD/hapi-plugin-websocket.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/hapi-plugin-websocket/HEAD/package.json -------------------------------------------------------------------------------- /sample-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/hapi-plugin-websocket/HEAD/sample-server.js --------------------------------------------------------------------------------