@eugen.stan Most people use SSH tunneling to achieve more or less the same result. CIDER also supports this. I think it's a good balance between not adding complexity to nREPL and providing you with a secure connection.
thanks, I think so too
@bozhidar: any reason why (:import clojure.lang.RT
is being imported?
does not seem to be used but it seems to impact nrepl usage in babashka
https://github.com/nrepl/nrepl/blob/f1ed475a0218852ad98899942e1865c75610c18a/src/clojure/nrepl/transport.clj#L12
@eugen.stan No idea. Seems it has been around forever, someone will have do dig the history. If everything works without it we can remove it.
thanks, I will keep that in mind when I get to it if @borkdude does not get to it first
It's imported because it's used here: https://github.com/nrepl/nrepl/blob/f1ed475a0218852ad98899942e1865c75610c18a/src/clojure/nrepl/transport.clj#L62
I think that can be safely replaced by (Class/forName "[B")
Yep, I'm fairly sure you're right.
I should have grepped first. 😄