https://github.com/meain/tictactoe-clojurescript-reagent
Simple tictactoe game in clojurescript using reagent
https://github.com/meain/tictactoe-clojurescript-reagent
clojurescript getting-started leiningen reagent simple tictactoe-game
Last synced: about 1 year ago
JSON representation
Simple tictactoe game in clojurescript using reagent
- Host: GitHub
- URL: https://github.com/meain/tictactoe-clojurescript-reagent
- Owner: meain
- Created: 2017-09-18T16:34:49.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-22T16:51:48.000Z (over 8 years ago)
- Last Synced: 2025-02-09T00:18:04.489Z (over 1 year ago)
- Topics: clojurescript, getting-started, leiningen, reagent, simple, tictactoe-game
- Language: Clojure
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ttt
Simple tictactoe game in clojurescript using reagent
## Setup
To get an interactive development environment run:
lein figwheel
and open your browser at [localhost:3449](http://localhost:3449/).
This will auto compile and send all changes to the browser without the
need to reload. After the compilation process is complete, you will
get a Browser Connected REPL. An easy way to try it is:
(js/alert "Am I connected?")
and you should see an alert in the browser window.
To clean all compiled files:
lein clean
To create a production build run:
lein do clean, cljsbuild once min
And open your browser in `resources/public/index.html`. You will not
get live reloading, nor a REPL.