The documentation seems quite sparse in LightTable. I want to create a very bare bones ClojureScript web application in LightTable as a starting point to build on. I have the Instarepl in Clojure working fine, and then I create a new file called dummy.cljs containing the following:
(ns dummy)
(js/alert "Hello lighttable")
How can I run this?
I have figured this out now, and I will post a video on how todo it as it is quite visual.
Here is the video:
lein ring server
and lein cljsbuild auto
, in order to run local web-server with clojurescript autocompileSimpler way would be using http://clojurescriptone.com/ and lein repl as main development tool and use LT only as additional tool for solving some small problems within one-two files.