Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript interactive shell with completion

Tags:

javascript

For debugging and testing I'm searching for a JavaScript shell with auto completion and if possible object introspection (like ipython). The online JavaScript Shell is really nice, but I'm looking for something local, without the need for an browser.

So far I have tested the standalone JavaScript interpreter rhino, spidermonkey and google V8. But neither of them has completion. At least Rhino with jline and spidermonkey have some kind of command history via key up/down, but nothing more.

Any suggestions?

This question was asked again here. It might contain an answer that you are looking for.

like image 219
Peter Hoffmann Avatar asked Sep 03 '08 05:09

Peter Hoffmann


1 Answers

Rhino Shell since 1.7R2 has support for completion as well. You can find more information here.

like image 149
Martin Lazar Avatar answered Sep 29 '22 19:09

Martin Lazar