https://github.com/lufzle/typescript-game
TypeScript example for meetup
https://github.com/lufzle/typescript-game
Last synced: 12 days ago
JSON representation
TypeScript example for meetup
- Host: GitHub
- URL: https://github.com/lufzle/typescript-game
- Owner: lufzle
- Created: 2018-01-27T11:23:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-27T16:56:19.000Z (about 7 years ago)
- Last Synced: 2025-02-16T01:44:46.066Z (2 months ago)
- Language: TypeScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## typescript-game
### design 1An exercise for a TypeScript meetup.
### Prerequisites
* Node 8+
* TypeScript 2.6+
* yarn 1.3+
* optionally, Docker if you want to build+run in a container### Development
```bash
$ yarn # will install deps
$ yarn start # will start the game
$ yarn test # will run unit tests
$ yarn test:watch # will run unit tests in watch mode
$ yarn build # will build with tsc and output to ./dist
```### Run in a container
```bash
$ ./scripts/run-docker
```Will build the Docker image and run the app in a container. Useful if you just want to try the game without installing any deps.