For example, I have a js code, and I while like to write a simple console program that read this code, execute it, and print back the result. Is this possible to do so? If yes, how can I start doing this? Thank you.

link|improve this question

75% accept rate
look in to something like v8 or rhino... – Richard J. Ross III Oct 17 '11 at 16:01
is there anything related to dom in this js code? – wong2 Oct 17 '11 at 16:01
Of course it's possible. It's called an interpreter. There's at least a dozen of them, likely more if you count non-mainstream ones. – delnan Oct 17 '11 at 16:01
@RichardJ.RossIII Rhino is Java, isn't it? – Thor84no Oct 17 '11 at 16:03
1  
Yes, you could. But running a JVM to run a JS engine to interpret a script... It's all getting a little messier than it needs to be at that point. – Thor84no Oct 17 '11 at 16:21
show 2 more comments
feedback

1 Answer

up vote 6 down vote accepted

You'd need a JS engine for C such as SpiderMonkey (which is the one FireFox uses). I'm not sure how easy that is to use though, there may be others that are better.

link|improve this answer
1  
This seems to be of interest: developer.mozilla.org/En/SpiderMonkey/JSAPI_User_Guide – Felix Kling Oct 17 '11 at 16:13
That's really useful. Thanks. – Thor84no Oct 17 '11 at 16:16
feedback

Your Answer

 
or
required, but never shown

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