https://github.com/lionyxml/react-game-of-life
A React app based on Conway's Game of Life
https://github.com/lionyxml/react-game-of-life
Last synced: 3 months ago
JSON representation
A React app based on Conway's Game of Life
- Host: GitHub
- URL: https://github.com/lionyxml/react-game-of-life
- Owner: LionyxML
- License: gpl-2.0
- Created: 2022-12-29T12:59:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-20T22:24:13.000Z (9 months ago)
- Last Synced: 2025-03-25T04:51:15.490Z (4 months ago)
- Language: TypeScript
- Size: 750 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-game-of-life
[](https://github.com/LionyxML/react-game-of-life/actions/workflows/test_and_deploy.yml)
A ReactJS App based on Conway's Game of Life
You can see it working here: [React-Game-Of-Life](https://lionyxml.github.io/react-game-of-life)

### Install
In order to install this App simply run:
```
npm install
```### Development
You can run a development server with:
```
npm run dev
```And access the App on your localhost, following the provided command response link.
### Style and Syntax Enforcement
This project enforces styles and syntaxes with the use of:
- ESLint
- Prettier
- TypeScriptYou may find checking and fixing scripts inside the `package.json` file.
### Build
You may build using:
```
npm run build
```The resulting artifact will be ready on the `dist/` folder.
### Deploy
There's an automated script for github actions that runs tests, builds and deploy to the github-pages URL of the project.
One may also want do force a manual deploy, for this you can execute the `manual_deploy.sh` script.