Re: Any better client then telnet for connecting to a socket repl server?

2018-03-14 Thread Didier
Okay, for anyone else coming here and looking, you must absolutely try out Unravel https://github.com/Unrepl/unravel Its a command line tool that you install through npm (implemented in ClojureScript cool!), and then you can just do: unravel >From your terminal, and it will connect to any st

Re: Any better client then telnet for connecting to a socket repl server?

2018-03-10 Thread Stuart Sierra
I sometimes use inf-clojure mode in Emacs, which can connect directly to a socket REPL. I have a helper Elisp function inf-clojure-to-socket

RE: Any better client then telnet for connecting to a socket repl server?

2018-03-04 Thread Kimmo Koskinen
Hi! There are quite impressive socket repl clients such as https://github.com/Unrepl/unravel and https://github.com/Unrepl/spiral (for Emacs) both of which use the unrepl protocol https://github.com/unrepl/unrepl. - Kimmo -- You received this message because you are subscribed to the Google G

RE: Any better client then telnet for connecting to a socket repl server?

2018-03-03 Thread Sean Corfield
You can use rlwrap with telnet but it’s a bit of a pain to deal with getting back out of the session. I’ve found the following works: rlwrap -q ^Q telnet 127.0.0.1 This sets up control-q as a quote character so when you’re ready to exit the session you can do ^Q ^] q Sean

Re: Any better client then telnet for connecting to a socket repl server?

2018-03-03 Thread Timothy Baldridge
Sadly NREPL isn't a REPL it's a RPC protocol transport for remote controlling a Clojure instance. You might look into rebel: although I'm not sure how well that plays with remote terminals. https://github.com/bhauman/rebel-readline. Also look into doing some of this with readline. Perhaps you ca

Re: Any better client then telnet for connecting to a socket repl server?

2018-03-03 Thread Chris Shellenbarger
Can you use NREPL? https://github.com/clojure/tools.nrepl This seems to be what most tools that provide a REPL are built on top of (Cursive, CIDER, etc). On Friday, March 2, 2018 at 7:49:45 PM UTC-6, Didier wrote: > > I want to connect to a Clojure socket repl server, but telnet is a really