Basically i'm a linux user. For the first time i'm running my node.js application in windows machine. I want to run my application as background process.
So installed forever
globally npm install forever -g
. Now i tried to run my node application using forever start app.js.
I am receiving error as forever is not reconised as internal or external command
.
I tried setting the ENV
varibales pointing to bin
folder of forever. But still im getting the error.
OS:Windows 7
Please share your ideas.
Package.Json
{
"Name":"xxxx",
"version":"1.0.0",
"dependencies":{
"async":"^2.5.0",
"forever":"^0.15.3"
}
}
Node version: 8.9.3
npm version:5.5.1