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?
To my knowledge, |
|||
|
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 :-) |
|||
Have you tried the console in Chrome Dev Tools? |
|||||||||
|
Ankit, I was looking for exactly the same answer and ended up implementing it, perhaps it could be helpful for you as well: https://github.com/mksenzov/i.js |
|||
|
Ok so for input commands history you can use this: http://blog.doteight.com/blog/2011/01/16/rlwrap-and-node/ but this way the tab completion doesn't work... anyone know how to call node interpreter with tab autocomletion turned on? |
|||
|