Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tim-evans/emoji-conway
✌️ Conway's game of life, but with emojis
https://github.com/tim-evans/emoji-conway
Last synced: 14 days ago
JSON representation
✌️ Conway's game of life, but with emojis
- Host: GitHub
- URL: https://github.com/tim-evans/emoji-conway
- Owner: tim-evans
- Created: 2018-08-13T04:40:10.000Z (over 6 years ago)
- Default Branch: latest
- Last Pushed: 2018-08-13T04:42:09.000Z (over 6 years ago)
- Last Synced: 2024-12-09T10:42:28.384Z (19 days ago)
- Language: JavaScript
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ✌️ Conway's Game of Life
A client / server Conway game of life.
## 🏃♂️ Running
To run the app, run `npm start` and `npx parcel index.html`. Visit [`localhost:1234`](http://localhost:1234) (or whatever parcel starts on) to see it in action ❤️
## 👩💻 Developing
This app is built using Parcel! I've bundled the package with the app, so all you'll need to do is run:
```bash
npm install
```Once all the dependencies are installed, the app can be run by running `npx parcel index.html`.
The server is run by executing `npm start`. Once these two pieces are up and running, you can run the app in development mode.
## 🏗 Building
The frontend portion of the app can be built for production using this command:
```bash
npx parcel build
```This should build the app under the `dist/` directory in the root of the project.