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!
|
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!
| |||||||||||||
feedback
|
|
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
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 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.) | |||
|
feedback
|
|
If you have a Mac you can get
in Terminal.app. You could also run one of your .js script by adding its name as an argument for jsc, like this:
Notice: I use On Ubuntu you have some nice ECMAScript shells at your disposal. Between them it's worth to mention SpiderMonkey. You can add It by On Windows as other people said you can rely on 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"). | ||||
|
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 http://msdn.microsoft.com/en-us/library/9bbdkx3k(VS.85).aspx | |||||
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. | |||
|
feedback
|