├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── public ├── index.html ├── main.js └── worker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/public/index.html -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/public/main.js -------------------------------------------------------------------------------- /public/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/public/worker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushgp/shared-worker-socket-example/HEAD/yarn.lock --------------------------------------------------------------------------------