Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eduardolagoeiro/my-card-game-server
A card game server
https://github.com/eduardolagoeiro/my-card-game-server
expressjs nodejs socket-io
Last synced: 19 days ago
JSON representation
A card game server
- Host: GitHub
- URL: https://github.com/eduardolagoeiro/my-card-game-server
- Owner: eduardolagoeiro
- Created: 2021-06-19T13:48:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-27T10:58:12.000Z (about 3 years ago)
- Last Synced: 2024-11-24T10:26:14.419Z (3 months ago)
- Topics: expressjs, nodejs, socket-io
- Language: TypeScript
- Homepage:
- Size: 144 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Card Game Server
## running
```
docker-compose up app
```## testing
```
docker-compose run app npm run test [testFileName]
```## debug test
run
```
docker-compose run --service-ports app npm run test [testFileName]
```
attach in node port 9229in vscode you can create a .vscode/launch.json and run
```
{
"configurations": [
{
"name": "Attach to Docker Node Process",
"type": "node",
"protocol": "inspector",
"request": "attach",
"stopOnEntry": false,
"port": 9229,
"localRoot": "${workspaceRoot}",
"remoteRoot": "/app",
"sourceMaps": true
}
]
}
```