nrepl

https://github.com/nrepl/nrepl || https://nrepl.org
vxe 2018-12-29T09:53:26.012500Z

are there any especially difficult obstacles for implementing an nrepl middleware for clojure-clr, perhaps providing something like what piggieback provides for clojurescript?

bozhidar 2018-12-29T10:59:07.014300Z

@vxe It’s mostly lack of interest and time. It’s doable, but given the fact that few people use CLR it’s not something high up on our to-do list. It also can’t be done the same way as it’s done for Piggieback, as you can’t drive the evaluation from a JVM, the same way you can do it for ClojureScript.

bozhidar 2018-12-29T11:00:03.015300Z

It would be most feasible to have a separate nREPL implementation for CLR or to use reader conditionals in the current implementation to support CLR.

bozhidar 2018-12-29T11:00:45.016200Z

However, this would add some complexity for a marginal gain. According to the State of Clojure survey almost no one uses ClojureCLR…

vxe 2018-12-29T11:11:11.016500Z

noted, thx