- download lumo, add it to
PATHand make it executable (on a Mac as simple asbrew install lumobut I think you can also usenpm install -g lumoto achieve the same thing) mkdir my-project && cd my-projectnpm install request request-promisetouch core.cljs- use your favourite editor to edit
core.cljs
(ns my-project.core)
(require '[request-promise :as rp])
(-> (rp "http://www.google.com")
(.then println))
- save and execute with
lumo core.cljs