-
- Downloads
Merge branch '1-develop-web-socket-code' into 'main'
Branches
No related tags found
Showing
- README.md 1 addition, 1 deletionREADME.md
- app.js 109 additions, 0 deletionsapp.js
- doc/msg.png 0 additions, 0 deletionsdoc/msg.png
- doc/msg.txt 54 additions, 0 deletionsdoc/msg.txt
- doc/uml.png 0 additions, 0 deletionsdoc/uml.png
- doc/uml.txt 10 additions, 0 deletionsdoc/uml.txt
- package-lock.json 4326 additions, 3540 deletionspackage-lock.json
- package.json 10 additions, 2 deletionspackage.json
- public/index.html 111 additions, 0 deletionspublic/index.html
- src/game/gameLogic.js 12 additions, 9 deletionssrc/game/gameLogic.js
- src/game/index.js 17 additions, 17 deletionssrc/game/index.js
- tests/default.test.js 0 additions, 3 deletionstests/default.test.js
- tests/websocket.test.js 50 additions, 0 deletionstests/websocket.test.js
doc/msg.png
0 → 100644
29.8 KiB
doc/msg.txt
0 → 100644
doc/uml.png
0 → 100644
22.7 KiB
doc/uml.txt
0 → 100644
This diff is collapsed.
... | ... | @@ -4,11 +4,19 @@ |
"description": "", | ||
"main": "app.js", | ||
"scripts": { | ||
"test": "jest" | ||
"test": "jest", | ||
"start": "node app.js", | ||
"format:check": "prettier --check .", | ||
"format:write": "prettier --write ." | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"jest": "^29.7.0" | ||
"jest": "^29.7.0", | ||
"prettier": "^3.3.3" | ||
}, | ||
"dependencies": { | ||
"express": "^4.19.2", | ||
"ws": "^8.18.0" | ||
} | ||
} |
public/index.html
0 → 100644
tests/default.test.js
deleted
100644 → 0
tests/websocket.test.js
0 → 100644