Added readme

This commit is contained in:
Dmitriy Shishkov 2021-04-21 23:14:38 +05:00
parent 1bce88794d
commit 20f9756d4f
No known key found for this signature in database
GPG Key ID: 7CAE12ED13853CAC

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# Conway's Game of Life
## 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 .
```