lein-figwheel

Mark Bailey 2020-04-28T03:38:10.006800Z

Hello everyone! When I run

lein figwheel
in my project dir, figwheel will not show a prompt. My app is live, but it's not connected for some reason, and as such it doesn't auto-build.

lsenjov 2020-04-28T06:28:52.007200Z

Have you opened up a browser and the page hosting the javascript?

lsenjov 2020-04-28T06:29:28.007800Z

The figwheel repl links directly to the browser running the page. When you send something to be evaluated, it does it in the browser, and returns the result

lsenjov 2020-04-28T06:29:53.008300Z

As such, it can't open a repl prompt till you've got the JS running @mbbailey96