https://github.com/cry1s/bunker-game
Bunker game
https://github.com/cry1s/bunker-game
Last synced: 4 months ago
JSON representation
Bunker game
- Host: GitHub
- URL: https://github.com/cry1s/bunker-game
- Owner: cry1s
- License: mit
- Created: 2020-07-27T13:32:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T19:52:32.000Z (7 months ago)
- Last Synced: 2025-01-14T07:09:08.534Z (5 months ago)
- Language: JavaScript
- Size: 5.91 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
An Example .io Game
https://example-io-game.victorzhou.comAn example multiplayer (.io) web game. Read the walkthrough: [**How to Build a Multiplayer (.io) Web Game**](https://victorzhou.com/blog/build-an-io-game-part-1/).
Built with [Node.js](https://nodejs.org/), [socket.io](https://socket.io/), and [HTML5 Canvas](https://www.w3schools.com/html/html5_canvas.asp).
To see this code with [Flow](https://flow.org/) typing, visit the [flow branch](https://github.com/vzhou842/example-.io-game/tree/flow).
## Development
To get started, make sure you have Node and NPM installed. Then,
```bash
$ npm install
$ npm run develop
```on your local machine.
To run the project in a production setting, simply
```bash
$ npm install
$ npm run build
$ npm start
```## Tests
To run the tests for this this project, simply
```bash
$ npm install
$ npm test
```