figwheel

general discussion about figwheel, specific discussions in #figwheel-main and #lein-figwheel
john 2017-04-04T21:45:23.820111Z

hello all

john 2017-04-04T21:45:50.828372Z

I am trying to connect a repl to a web worker

john 2017-04-04T21:46:05.832892Z

Finally got it working with weasel

john 2017-04-04T21:47:15.853524Z

I'd like to use figwheel though, since the tooling is so mature. For it to work though, I need to be able to control where the client js calls out to localhost 3449. Is that controllable in figwheel?

john 2017-04-04T21:48:43.880619Z

And I can't just have figwheel insert the call out. It has to be inserted in a (when-not (in-webworker?) (repl/connect ...

john 2017-04-04T21:49:27.893756Z

correction: (when (in-webworker?) (repl/connect ...

john 2017-04-04T21:50:00.903393Z

well, either one, to control when the connect is called is the point

john 2017-04-04T21:51:05.922286Z

and after searching through the figwheel documentation and blog posts, I was not able to find a reference to a programmatic figwheel/connect function I can use, so I figured I'd ask here.