conways_game/README.md
2021-04-22 00:02:49 +05:00

24 lines
500 B
Markdown

# Conway's Game of Life
<p align="center">
<img src="https://github.com/dm1sh/conways_game/raw/main/logo.svg" alt="my Conway's game of life logotype" width="150px">
</p>
## Application and dev stack overview
It is a Conway's game of life implementation with JavaScript in browser. TypeScript is used for static type checking and esbuild for bundling.
## Running instructions
```bash
# Build
npm install
npm run build
# Open in browser
chromium index.html
# With webserver
npx serve -s .
```