1
0
mirror of https://github.com/mizanxali/uno-online synced 2025-12-10 12:13:25 +00:00

Set up socketio server-client connection

This commit is contained in:
Mizanali Panjwani
2021-02-22 05:29:23 +05:30
parent 157aa5f94b
commit 93d0c9fdde
4 changed files with 580 additions and 70 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "uno-online",
"version": "1.0.0",
"description": "Online multiplayer card game",
"main": "server.js",
"scripts": {
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizanxali/uno-online.git"
},
"author": "Mizan Ali",
"license": "ISC",
"bugs": {
"url": "https://github.com/mizanxali/uno-online/issues"
},
"homepage": "https://github.com/mizanxali/uno-online#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"socket.io": "^3.1.1"
}
}