ah, ok I’ll double check… thanks
hah, yes should have been #'wrap-classpath
@raymcdermott What’s the middleware you’re working on?
I want to have the ability for two (or more) developers to follow each other’s sessions
I looked out there are and there’s nothing to help yet
there is a small project called concerto
but it’s abandonware and also doesn’t do what I need
unless you @bozhidar know better 😉
goal it to connect this up with a web UI but should also be open for people to write editor bindings too
but that won’t be me
I also want to be able to connect to a CLJ or CLJS backend depending on user choice and that seems quite simple
tbh I’m not sure if I will go the nrepl way or the unrepl way … the latter seems simpler
I’ll shut up now though cos I’m still struggling with the baby steps 🙂
I don’t quite understand what’s the end goal - what does it mean to follow each other’s sessions?
maybe I explained it badly, I mean to share the REPL of another user
I see.
for example their history and the symbols they have def’d
And everyone connected gets the same state.
that’s where it gets tricky but ideally yes
but I’m also thinking that each user should have their own state that can be augmented by the other users
maybe if I def a and the other person def’s a … should they win?
or should I retain my a?
cos as usual with state … it’s a nightmare
and a model that’s more accretive might be better / more sane for the users to follow
tbh I think I need to experiment with it
and see what works