For instance, if you were to run a Python script you would type python filename.py or if you wanted to run a C program make filename then ./ filename. How do you do this with .js files?

I appreciate the answers!

link|improve this question

... A C 'script'? – Corbin Dec 16 '11 at 10:41
Sorry, I don't know C. What would the proper term be to describe a C file? – BLUC Dec 16 '11 at 10:43
JS is no general-purpose language, so why would you want to do this? Include your .js file into an .htm(l) page via the <script> tag, then open the page in your browser. – Oliver Weiler Dec 16 '11 at 10:44
@BLUC It's called an executable. – Oliver Weiler Dec 16 '11 at 10:44
1  
@OliverWeiler it's not as easily applicable in general situations as some other languages, but I do believe it can have it's applications outside of web pages :). – Corbin Dec 16 '11 at 10:46
show 2 more comments
feedback

4 Answers

up vote 4 down vote accepted

You would need a Javascript engine (such as Mozilla's Rhino) in order to evaluate the script - exactly as you do for python in fact, though the latter ships with the standard distribution.

If you have rhino (or alternative) installed and on your path, then running the JS can indeed be as simple as

> rhino filename.js

It's worth noting though that while Javascript is simply a language in its own right, a lot of particular scripts assume that they'll be executing in a browser-like environment - and so try to access global variables such as location.href, and create output by appending DOM objects rather than calling print.

If you've got hold of a script which was written for a web page, you may need to wrap or modify it somewhat to allow it to accept arguments from stdin and write to stdout. (I believe Rhino has a mode to emulate standard browser global vars which helps a lot, though I can't find the docs for this now.)

link|improve this answer
feedback

If you have a Mac you can get jsc a javascript console in OS X (Terminal) by typing

/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc

in Terminal.app.

You could also run one of your .js script by adding its name as an argument for jsc, like this:

jsc your_awesome_script_name.js

Notice: I use console.log() during development but jsc needs the debug() function instead.

On Ubuntu you have some nice ECMAScript shells at your disposal. Between them it's worth to mention SpiderMonkey. You can add It by sudo apt-get install spidermonkey

On Windows as other people said you can rely on cscript and wscript directly built on the OS.

I would add also another :) way of thinking to the problem, if you have time and like to learn new things i'd like to mention coffee-script that has its own compiler/console and gives you super-correct Javascript out. You can try it also on your browser (link "try coffeescript").

link|improve this answer
feedback

If you are on a Windows PC, you can use WScript.exe or CScript.exe

Just keep in mind that you are not in a browser environment, so stuff like document.write or anything that relies on the window object will not work, like window.alert. Instead, you can call WScript.Echo to output stuff to the prompt.

http://msdn.microsoft.com/en-us/library/9bbdkx3k(VS.85).aspx

link|improve this answer
Is there one for Ubuntu, Google Chrome? – BLUC Dec 16 '11 at 10:51
You should have put that piece of vital information in the question. Sorry, I'm a Windows geek - I don't know much about Ubuntu. Besides, you will probably not have access to Google Chrome when running javascript from an Ubuntu shell prompt. EDIT: Andrzej Doyle's answer is the way to go for you. – atornblad Dec 16 '11 at 10:53
feedback

Alternatively, if you're just looking to play around with Javascript a nice in browser option is Codecademy's Javascript Lab. http://labs.codecademy.com/

They also have a Python and Ruby IDE.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.