├── .gitignore ├── README.md ├── index.html ├── screenshots ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png └── screenshot.png └── webrtc-browser-to-browser.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/index.html -------------------------------------------------------------------------------- /screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/screenshots/screenshot-2.png -------------------------------------------------------------------------------- /screenshots/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/screenshots/screenshot-3.png -------------------------------------------------------------------------------- /screenshots/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/screenshots/screenshot-4.png -------------------------------------------------------------------------------- /screenshots/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/screenshots/screenshot-5.png -------------------------------------------------------------------------------- /screenshots/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/screenshots/screenshot-6.png -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /webrtc-browser-to-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/build-decentralized-web-app/HEAD/webrtc-browser-to-browser.svg --------------------------------------------------------------------------------