Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kirahowe/clojurescript-tic-tac-toe
A smart tic-tac-toe built with reframe to learn clojure(script)
https://github.com/kirahowe/clojurescript-tic-tac-toe
clojure clojurescript reframe
Last synced: about 2 months ago
JSON representation
A smart tic-tac-toe built with reframe to learn clojure(script)
- Host: GitHub
- URL: https://github.com/kirahowe/clojurescript-tic-tac-toe
- Owner: kirahowe
- Created: 2019-07-29T20:57:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-30T15:19:42.000Z (over 5 years ago)
- Last Synced: 2024-11-01T04:27:10.682Z (3 months ago)
- Topics: clojure, clojurescript, reframe
- Language: Clojure
- Homepage: https://kiramclean.github.io/clojurescript-tic-tac-toe/
- Size: 161 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tic-tac-toe
A [re-frame](https://github.com/Day8/re-frame) application to play tic tac toe, so I could learn a bit about clojure(script).
## 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
```