Is there a Javascript IDE that has nothing to do with a browser?

后端 未结 6 1295
庸人自扰
庸人自扰 2021-01-01 23:48

Does anyone know of a program that lets you write javascript; then execute it - all the while having nothing to do with a browser? I don\'t want DOM manipulation, the equiv

6条回答
  •  无人及你
    2021-01-02 00:01

    Without the browser you would need something to host / script against so I would say that the os is your first point of call. Some programs provide an extensibility model by using jscript for plugins. You interface with the applications using jscript.

    You have .js and .jse files which can be run on the ms scripting host, assuming you are on windows of course.

    Check out http://msdn.microsoft.com/en-us/library/4yyeyb0a(VS.85).aspx

    So in a nutshell I am saying you COULD write in notepad, and double click the .js/.jse file and run it. This would be the simplest approach.

    http://www.aptana.com/ is also very cool

    Andrew

提交回复
热议问题