https://github.com/alanrsoares/re-frame-game-of-life
An educational implementation of Conway's Game of Life in ClojureScript using re-frame
https://github.com/alanrsoares/re-frame-game-of-life
clojurescript conway-game game life reframe
Last synced: about 2 months ago
JSON representation
An educational implementation of Conway's Game of Life in ClojureScript using re-frame
- Host: GitHub
- URL: https://github.com/alanrsoares/re-frame-game-of-life
- Owner: alanrsoares
- Created: 2016-08-26T02:30:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-15T08:30:57.000Z (over 8 years ago)
- Last Synced: 2025-01-29T04:41:27.038Z (3 months ago)
- Topics: clojurescript, conway-game, game, life, reframe
- Language: Clojure
- Size: 261 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# game-of-life
A [re-frame](https://github.com/Day8/re-frame) implementation of Conway's Game of Life.
[view demo](https://alanrsoares.github.io/re-frame-game-of-life/)
## Development Mode
### Run application:
```
lein clean
lein figwheel dev
```Figwheel will automatically push cljs changes to the browser.
Wait a bit, then browse to [http://localhost:3449](http://localhost:3449).
## Production Build
To compile clojurescript to javascript:
```
lein clean
lein cljsbuild once min
```