Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 639 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 639 Bytes

Dahl's Game of Life

This is a NodeJS (backend) and Angular2+ (frontend, with PrimeNG UI framework) implementation of Conway's Game of Life.

Installation

Run in Backend folder npm install.
Run in Frontend folder npm install.

Configuration

Frontend's only meaningful configuration is the backend's endpoint, in src/environments. By default, it's http://localhost:3000.
You can also configure the initial size of the grid.

Run

Run in Backend folder npm start.
Run in Frontend folder ng serve.
Point your browser to http://localhost:4200

Test

You can run backend's test with npm test in Backend folder.