hotreload clojurescript without JVM
```
npm i -g hotreload-cljs
hotreload
open http://localhost:3000
vimscript
func Hotreload()
silent call system('/usr/bin/curl -H "Content-Type: text/plain" http://localhost:3000/hotreload/' . expand("%:p") . " -d " . shellescape(join(getline(1,'$'), "\n")) . " > /dev/null")
endfunc
au FileType clojure,html,javascript,css noremap :call Hotreload()
au TextChanged,TextChangedI .cljs,.js call Hotreload()
`Examples
$3
`clojure
; src/app/core.cljs - must be inside src
(ns app.core)
(def root (. js/document getElementById "root"))
(set! (. root -textContent) "hello")
`
$3
`html
`
$3
`html
`
inline cljs
add this to your index.html. demo
`html
`$3
* eval clojurescript in devtools console by
e(prn "hello world")
* write clojurescript inside
``
* load external clojurescript
```* Take a look at klipse for faster experience