Re: [Q] Transparently call functions remotely via nREPL?

2018-04-29 Thread henrik42
Hi, I ended up using https://github.com/technomancy/robert-hooke -- like this: ,,,(:require [clojure.tools.nrepl :refer :all]) (defn remote-eval [conn code] (let [{:keys [value err]} (-> (client conn 1000) (message {:op :eval

[Q] Transparently call functions remotely via nREPL?

2018-04-10 Thread henrik42
Hi, I'm calling some functions a,b and c via ring/compojure. I would like to be able to switch to "remote invocation of a, b and c via nREPL" without changing my ring/compojure routes. I know I can just code that into a, b and c,(not good, not-dry) but I was wondering if there is a lib that sup