Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ipython equivalent for javascript/coffeescript for node.js? [closed]

More specifically, is there a REPL that has (more) colorful output, pretty printing, tab completion and the other goodies that ipython has for node.js javascript/coffeescript?

like image 795
Ankit Avatar asked May 21 '11 07:05

Ankit


1 Answers

I've recently started a project to provide an enhanced, extensible, embeddable interactive interpreter for multiple languages running on Node (including built-in support for CoffeeScript) here:

http://danielgtaylor.github.com/nesh/

It's pretty basic at the moment but it already provides a nice base with multi-language support and an asynchronous plugin architecture, a small set of built-in utility functions, etc. Let me know if there are any specific features you are looking for :-)

like image 199
Daniel Avatar answered Sep 22 '22 07:09

Daniel