First working p2p videochat.

I've integrated a simple react express backend with a Peerjs server.
It can be published under a simple "ngrok.io" tunnel for testing on
internet.
This commit is contained in:
2020-12-29 14:42:38 +01:00
commit 132fb3a3c1
6 changed files with 1703 additions and 0 deletions

21
games-party/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "games-party",
"version": "1.0.0",
"description": "A WebRTC playroom",
"main": "index.js",
"scripts": {
"devel": "nodemon server.js"
},
"author": "Domenico Testa",
"license": "MIT",
"dependencies": {
"ejs": "^3.1.5",
"express": "^4.17.1",
"peer": "^0.6.1",
"socket.io": "^3.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}