From 20f9756d4fc51421ad30e05b2c880377dfeb1417 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Wed, 21 Apr 2021 23:14:38 +0500 Subject: [PATCH] Added readme --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c70134f --- /dev/null +++ b/README.md @@ -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 . +```