Re: NodeJS REPL

2011-10-12 Thread Devin Walters
I wanted one of these the other day. Great stuff. I'm looking forward to toying around with it as well. On Wednesday, October 12, 2011 at 5:44 PM, Michael Fogus wrote: > David's right about :nodejs. Thank you for this contribution. I can't wait to > play around with it. If some ideas come to m

Re: NodeJS REPL

2011-10-12 Thread Michael Fogus
David's right about :nodejs. Thank you for this contribution. I can't wait to play around with it. If some ideas come to mind I will provide feedback. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googl

Re: NodeJS REPL

2011-10-12 Thread David Nolen
Nice! I think :target :nodejs is just about guaranteeing that some Node.js definitions like 'require' are in place and providing a more sensible print fn. David On Wed, Oct 12, 2011 at 11:48 AM, kurtharriger wrote: > I took a stab at writing a repl for nodejs. > > The node documentation has an e

NodeJS REPL

2011-10-12 Thread kurtharriger
I took a stab at writing a repl for nodejs. The node documentation has an example of starting a repl that listens on a socket: http://nodejs.org/docs/v0.3.1/api/repl.html Using this I attempted to implement repl/IJavaScriptEnv with some degree of success. I had a little bit of trouble determinin