jeev
jeev

Reputation: 478

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

Upvotes: 3

Views: 5028

Answers (2)

Kevin Reilly
Kevin Reilly

Reputation: 6252

Two other cross-platform options to check out are node-webkit and AppJS

Upvotes: 1

Alex
Alex

Reputation: 38519

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.

Upvotes: 2

Related Questions