execute node.js without using command prompt(either winform or javascript)?
I am Totally new to Node.js, i have a node app running, but now i need to execute the node.js program without using command prompt atall. It maybe through winform app(using vb.net) or using javascript.
Can somebody help me out on this?
Cheers Jeev
I blogged about how to create a standalone EXE for NodeJS apps here:
http://www.alexjamesbrown.com/blog/development/create-a-standalone-exe-to-run-a-node-js-application
You're not really running the app through a separate app.
Node is an executable that runs the Javascript code - this just packages the required application, along with your code, to give the impression of it running standalone.
其他两个跨平台的选项是node-webkit和AppJS
链接地址: http://www.djcxy.com/p/52712.html