JavaScript interactive shell with completion - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:35:08Zhttp://stackoverflow.com/feeds/question/41207http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion4JavaScript interactive shell with completionPeter Hoffmann2008-09-03T05:27:19Z2009-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#412120Answer by Peter Hoffmann for JavaScript interactive shell with completionPeter Hoffmann2008-09-03T05:32:34Z2008-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#412590Answer by Jasper for JavaScript interactive shell with completionJasper2008-09-03T06:55:51Z2008-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#414151Answer by Sam Hasler for JavaScript interactive shell with completionSam Hasler2008-09-03T10:21:35Z2008-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#7470823Answer by Martin Lazar for JavaScript interactive shell with completionMartin Lazar2009-04-14T11:03:50Z2009-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#18124160Answer by Cheeso for JavaScript interactive shell with completionCheeso2009-11-28T12:25:23Z2009-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 >= 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> ");
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("<<>>");
}
}
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><job>
<reference object="Scripting.FileSystemObject" />
<script language="JavaScript" src="util.js" />
<script language="JavaScript" src="shell.js" />
</job>
</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>