admin管理员组文章数量:1346328
I created a Test.js file and wrote two lines of JS code in it:
var a = 5;
console.log("The result is = " + a);
The output should be:
"The result is = 5"
Is there a way I can see this in Aptana Scripting console, instead of integrating the JS code in a HTML file and saving/refreshing it?
Can any other IDE, say Netbeans help, if not Aptana?
Any advise would be highly appreciated.
Regards
Roy
I created a Test.js file and wrote two lines of JS code in it:
var a = 5;
console.log("The result is = " + a);
The output should be:
"The result is = 5"
Is there a way I can see this in Aptana Scripting console, instead of integrating the JS code in a HTML file and saving/refreshing it?
Can any other IDE, say Netbeans help, if not Aptana?
Any advise would be highly appreciated.
Regards
Roy
Share Improve this question edited May 22, 2012 at 23:24 Glauco Vinicius 2,6453 gold badges25 silver badges37 bronze badges asked May 2, 2012 at 16:54 user1370574user1370574 1- 1 I often write code snippets in browser consoles and piece larger functions/objects together that way. Chrome's now has auto-plete. – Erik Reppen Commented May 22, 2012 at 23:46
5 Answers
Reset to default 1I think that it would be best if you give Node.js a try. This way, you get to call node test.js
on a console window and see the result.
I'm pretty sure that console is meant for viewing the output of Aptana's Ruby-based mands (installed under the Commands menu). It might be possible to follow the instructions here: http://www.chromium/for-testers/enable-logging and then tail the resulting log file in a Terminal panel (not the same as a console window).
I'm afraid it is not possible.
But What I did was to setup a simple workbench.html file, where in the header I put
[...]
<script src="http://ajax.googleapis./ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/myJsFile.js"></script>
and then modified the myJsFile.js
and saved it.
Another very intersting possibility is given by http://www.developer.nokia./Community/Wiki/Aptana_WRT_Plugin:_Displaying_log_messages_in_Output_console
just check it
It's not exactly what you asked, but it might point you in the right direction. There's a project called EclipseMonkey ... I'm not sure the status. Here's a working (?) example. Your mileage will vary. http://blogs.edgehill.ac.uk/webservices/2008/10/16/aptana-outline-auto-expansion-monkeyed/
What you can do is you can download node.js from node.js, download the package and follow the installation instructions on the screen.
If using a Windows, the node.js package es with its own interactive mand prompt which you can open. To run a js file on windows, open the windows mand prompt, type in node, then the name of your file e.g. test.js. Node.js should run your file.
If using a Mac, the node.js package runs through the terminal application on the mac. To run a file, type in node, then the name of your file e.g. test.js, node.js should run the file.
Aptana Studio 3 has the ability to open the terminal inside the IDE itself. Save your file in Aptana Studio and follow the instructions to run a file on the mac.
By the way, keep your files labelled in lowercase letters, I tried using Uppercase for the first letter and it did not work.
Hope that helps.
本文标签: aptana3Is there a way to run JavaScript code inside Aptana Studio 3 IDEStack Overflow
版权声明:本文标题:aptana3 - Is there a way to run JavaScript code inside Aptana Studio 3 IDE? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829413a2546248.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论