I was wondering if there is a way to associate cljs repl with a nodejs process that I have already started, that is, in debug mode and stopped at a breakpoint.
So, I know that there is https://github.com/bodil/cljs-noderepl , and it works fine for me, but it starts the "sandbox" as it says in the documentation. I would like it to connect to the node process of my choice (e.g. node debug my_project.js).
I can use a regular node debugger, but this simple old JS, not CLJS.
I also looked at nRepl, but that doesn't seem like a solution.
I'm asking about what is possible at the moment, or can I use this type of repl in a browser environment?
thanks
source share