hi
sorry for the very specific question, is it possible to connect from calva to a remote cljs repl ?
#calva-dev is an extremely helpful channel too
i've successfully connected to a remote clj repl using ssh port forwarding
if i do the same with cljs i can connect the remote repl to my browser
but id like to also connect with calva to the remote repl
Sorry, I'm not a Calva user but have you seen this? https://github.com/BetterThanTomorrow/calva/issues/296#issuecomment-562860146 and specifically https://github.com/baflo/cljs-examples/blob/master/clj-figwheel-main-node/README.md
thanks im looking into it right now 😄
Hi, I'm maybe missing a setup option I'm getting this error:
Syntax error (FileNotFoundException) compiling at (figwheel\main.cljc:1:1).
Could not locate cljs/cli__init.class, cljs/cli.clj or cljs/cli.cljc on classpath.
I found the trouble, I was missing a dep:
[org.clojure/clojurescript "1.10.339"]
The error seems to be saying that cljs.cli
isn't on your classpath. Although I'm not sure how that would happen if the CLJS namespaces required in figwheel.main
before cljs.cli
are there. Are you using deps.edn
with a dev.cljs.edn
file?
Ah, just saw your other message. Glad you fixed it :)
hahahah Yes, thanks
Still not sure why the CLI namespace would fail even if it's defined after some of the others but that can be an exploration for a different time :)