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: 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-30T15:19:42.000Z (almost 6 years ago)
- Last Synced: 2025-03-10T12:56:33.051Z (2 months ago)
- Topics: clojure, clojurescript, reframe
- Language: Clojure
- Homepage: https://kiramclean.github.io/clojurescript-tic-tac-toe/
- Size: 161 KB
- Stars: 0
- Watchers: 1
- 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
```