-
-
Save pithyless/0c37ccce17ce6bf99abf to your computer and use it in GitHub Desktop.
Reagent quickstart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Get lein | |
lein - http://leiningen.org/ | |
2. `lein new reagent <awesome-project>` | |
3. Some changes to project.clj from last night's talk: | |
:dependencies [[org.clojure/clojure "1.7.0-alpha4"] | |
[org.clojure/clojurescript "0.0-2371"] | |
[org.clojure/core.async "0.1.346.0-17112a-alpha"] | |
[reagent "0.4.3"] | |
[cljs-ajax "0.3.3"]] | |
4. Editor setup | |
ViM | |
https://github.com/tpope/vim-fireplace | |
https://github.com/guns/vim-clojure-static | |
Emacs | |
https://github.com/clojure-emacs/cider-nrepl | |
Otherwise | |
http://lighttable.com/ | |
5. Reagent vs Om | |
http://diogo149.github.io/2014/10/19/om-no/ | |
6. Run it all! | |
`lein ring server` | |
`lein repl` | |
(start-figwheel) | |
(browser-repl) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment