Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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)

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