1
votes

I installed forever and forever-win globally using npm and started my app.js using 'forever start app.js' and this works but it opens a 'nodejs window' which I cannot close.

Is there a way in windows to start my application from commandline using forever without this nodejs window appearing?

1
have you tried looking at using Windows services for this or the start command? - ali haider
Have you been able to find a solution to this? I'm facing the same issue. - Onur Çevik

1 Answers

0
votes

Start it as a background process from command line.

START /B program

See this superuser question for more details.