An open API service indexing awesome lists of open source software.

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

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
```