JavaScript interactive shell with completion - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:35:08Z http://stackoverflow.com/feeds/question/41207 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion 4 JavaScript interactive shell with completion Peter Hoffmann 2008-09-03T05:27:19Z 2009-11-28T12:25:23Z <p>For debugging and testing I'm searching for a JavaScript shell with auto completion and if possible object introspection (like ipython). The online <a href="http://www.squarefree.com/shell/" rel="nofollow">JavaScript Shell</a> is really nice, but I'm looking for something local, without the need for an browser.</p> <p>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.</p> <p>Any suggestions?</p> <p>This question was asked again <a href="http://stackoverflow.com/questions/260787/javascript-shell">here</a>. It might contain an answer that you are looking for.</p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion/41212#41212 0 Answer by Peter Hoffmann for JavaScript interactive shell with completion Peter Hoffmann 2008-09-03T05:32:34Z 2008-09-03T05:32:34Z <p>@John thanks I know firebug, but I'm looking for a standalone, commandline javascript shell.</p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion/41259#41259 0 Answer by Jasper for JavaScript interactive shell with completion Jasper 2008-09-03T06:55:51Z 2008-09-03T06:55:51Z <p>Isn't <a href="http://developer.mozilla.org/en/Rhino_Shell" rel="nofollow">Rhino Shell</a> what you are looking for?</p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion/41415#41415 1 Answer by Sam Hasler for JavaScript interactive shell with completion Sam Hasler 2008-09-03T10:21:35Z 2008-09-03T10:21:35Z <p><a href="http://ejohn.org/blog/javascript-engine-speeds/" rel="nofollow">This post</a> by John Resig says that there are shells for <a href="http://www.mozilla.org/projects/tamarin/" rel="nofollow">Tamarin (Firefox 4?)</a> and <a href="http://webkit.org/projects/javascript/index.html" rel="nofollow">JavaScriptCore (Safari 3)</a>. I'm not sure if they have auto completion though.</p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion/747082#747082 3 Answer by Martin Lazar for JavaScript interactive shell with completion Martin Lazar 2009-04-14T11:03:50Z 2009-04-14T11:03:50Z <p>Rhino Shell since 1.7R2 has support for completion as well. You can find more information <a href="http://blog.norrisboyd.com/2009/03/rhino-17-r2-released.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion/1812416#1812416 0 Answer by Cheeso for JavaScript interactive shell with completion Cheeso 2009-11-28T12:25:23Z 2009-11-28T12:25:23Z <p>In Windows, you can run this file from the command prompt in cscript.exe, and it provides an simple interactive shell. No completion.</p> <pre><code>// shell.js // ------------------------------------------------------------------ // // implements an interactive javascript shell. // // from // http://kobyk.wordpress.com/2007/09/14/a-jscript-interactive-interpreter-shell-for-the-windows-script-host/ // // Sat Nov 28 00:09:55 2009 // var GSHELL = (function () { var numberToHexString = function (n) { if (n &gt;= 0) { return n.toString(16); } else { n += 0x100000000; return n.toString(16); } }; var line, scriptText, previousLine, result; return function() { while(true) { WScript.StdOut.Write("js&gt; "); if (WScript.StdIn.AtEndOfStream) { WScript.Echo("Bye."); break; } line = WScript.StdIn.ReadLine(); scriptText = line + "\n"; if (line === "") { WScript.Echo( "Enter two consecutive blank lines to terminate multi-line input."); do { if (WScript.StdIn.AtEndOfStream) { break; } previousLine = line; line = WScript.StdIn.ReadLine(); line += "\n"; scriptText += line; } while(previousLine != "\n" || line != "\n"); } try { result = eval(scriptText); } catch (error) { WScript.Echo("0x" + numberToHexString(error.number) + " " + error.name + ": " + error.message); } if (result) { try { WScript.Echo(result); } catch (error) { WScript.Echo("&lt;&lt;&gt;&gt;"); } } result = null; } }; })(); GSHELL(); </code></pre> <p>If you want, you can augment that with other utility libraries, with a .wsf file. Save the above to "shell.js", and save the following to "shell.wsf": </p> <pre><code>&lt;job&gt; &lt;reference object="Scripting.FileSystemObject" /&gt; &lt;script language="JavaScript" src="util.js" /&gt; &lt;script language="JavaScript" src="shell.js" /&gt; &lt;/job&gt; </code></pre> <p>...where util.js is: </p> <pre><code>var quit = function(x) { WScript.Quit(x);} var say = function(s) { WScript.Echo(s); }; var echo = say; var exit = quit; var sleep = function(n) { WScript.Sleep(n*1000); }; </code></pre> <p>...and then run shell.wsf from the command line. </p>