-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nrepl #3
nrepl #3
Conversation
Awesome!! I will look at it and try to merge. Right now I'm in the process of converting everything possible to tagged literals, now that we have direct support for those in cljs. And generally cleaning up the code :) |
I think the issue is the nrepl requests are not stateless, and so the session/cookie info is being lost across requests. There doesn't seem to be a quick fix for that |
the very last def in the cascalog examples still fails, I think due to something about https://github.com/nathanmarz/cascalog/blob/develop/src/clj/cascalog/util.clj#L163 so not a session issue per se |
I wrote an nrepl/drawbridge client in cljs https://github.com/hiredman/drawbridge-cljs and an nrepl middleware for compiling clojurescript https://github.com/hiredman/nrepl-cljs-middleware, with those two combined nrepl can be used to eval clojure and compile clojurescript |
Alright, I think I'm ready to address this now :) In the new world, we are gonna want an nrepl thing that plays the datomic transaction game. Will take a look at your projects. |
we got nrepl going within the new architecture (thanks to jonase) , so closing this guy |
got clojure evaluation happening via nrepl (https://github.com/clojure/tools.nrepl)