https://github.com/ravicious/cljs-sweeper
A ClojureScript port of Mamono Sweeper
https://github.com/ravicious/cljs-sweeper
game
Last synced: 2 months ago
JSON representation
A ClojureScript port of Mamono Sweeper
- Host: GitHub
- URL: https://github.com/ravicious/cljs-sweeper
- Owner: ravicious
- Created: 2016-03-18T16:43:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-25T14:14:56.000Z (almost 9 years ago)
- Last Synced: 2025-02-10T09:16:58.679Z (4 months ago)
- Topics: game
- Language: Clojure
- Homepage: http://mirrors.link/cljs-sweeper/
- Size: 247 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cljs-sweeper
cljs-sweeper is a ClojureScript port of the great [Mamono Sweeper](http://www.hojamaka.com/game/mamono_sweeper/en.html)
written by Hojamaka Games.## 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 cljsbuild once min
And open your browser in `resources/public/index.html`. You will not
get live reloading, nor a REPL.## License
Copyright © 2016 Rafał Cieślak
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.