├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── messages.d.ts ├── package.json ├── public ├── index.html └── web.js ├── server.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/README.md -------------------------------------------------------------------------------- /messages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/messages.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/public/index.html -------------------------------------------------------------------------------- /public/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/public/web.js -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneu/howto-webrtc/HEAD/yarn.lock --------------------------------------------------------------------------------