Sivanath
Sivanath

Reputation: 559

How to run nodejs without command prompt in windows?

I have tried the nodejs with command prompt. And it is working fine. How can i try to nodejs output without command prompt in windows platform.

Upvotes: 9

Views: 8917

Answers (1)

shawnjan
shawnjan

Reputation: 959

I assume you want to run Node.js as a service. You can use nssm: http://nssm.cc/

nssm.exe install sydjs-node c:\where-i-put-node-standalone\node.exe c:\code\SydJS\server.js
net start sydjs-node

Solution found here (I don't use node on windows =) ): http://blog.tatham.oddie.com.au/2011/03/16/node-js-on-windows/

Upvotes: 18

Related Questions