https://github.com/zachcp/flock-reagent
reagent version of tzach's flock
https://github.com/zachcp/flock-reagent
animation clojurescript react reagent
Last synced: about 1 month ago
JSON representation
reagent version of tzach's flock
- Host: GitHub
- URL: https://github.com/zachcp/flock-reagent
- Owner: zachcp
- Created: 2018-10-23T03:42:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-23T03:48:16.000Z (over 7 years ago)
- Last Synced: 2026-03-29T17:25:14.705Z (2 months ago)
- Topics: animation, clojurescript, react, reagent
- Language: Clojure
- Homepage: https://zachcp.github.io/flock-reagent/
- Size: 87.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flock-reagent
A port of [tzach's flock](https://github.com/tzach/flock) demo to use reagent
for managing application state. Also an experiment in using [stateful components](https://github.com/Day8/re-frame/blob/master/docs/Using-Stateful-JS-Components.md).
### 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
```