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.
-
1What do you mean? You can see the web pages in the web browser and code in any text editor you want.Jonas– Jonas2011-12-14 12:51:25 +00:00Commented Dec 14, 2011 at 12:51
-
Your question lacks clarity. Do you want to run Node.js as a service?JP Richardson– JP Richardson2011-12-14 14:21:46 +00:00Commented Dec 14, 2011 at 14:21
-
Check out runbg module on npm.grabantot– grabantot2017-05-25 04:45:09 +00:00Commented May 25, 2017 at 4:45
Add a comment
|
1 Answer
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/