bhauman / lein-figwheel

Figwheel builds your ClojureScript code and hot loads it into the browser as you are coding!
Eclipse Public License 1.0
2.88k stars 210 forks source link

Hello world template opens REPL and detects changes but does not run #736

Closed hyphz closed 5 years ago

hyphz commented 5 years ago

Using Windows 10, ClojureScript 1.10.238, Leiningen 2.9.1, Java 12.0.1.

After obtaining the hello world template example and running lein figwheel, the developer console appears and commands typed at the developer console run. However, the code in hello-world/cljs.core do not appear to run. The text in the println is not printed out. Although the CLJS logo does briefly appear in the corner of the browser when the file is updated, and if invalid code is added to the file then the error report does appear, the printed text does not appear in the console and other commands in the file do not run. Likewise, adding (.write js/document "Hello") has no effect on the HTML template. (reset-autobuild) does not cause the file to run.

hyphz commented 5 years ago

Sorry, didn't realize that the "console" meant the JS console, not the REPL.