Forever Node.JS Express 4

前端 未结 5 1626
时光取名叫无心
时光取名叫无心 2020-12-23 23:10

How do you run the Express 4 app with Forever? (or is there a new package?)

I am running my Express 3 apps with Forever installed locally with the package manager. I

5条回答
  •  孤独总比滥情好
    2020-12-23 23:40

    If you use npm start to run your app, this works in place of it:

    forever start -c "npm start" /path/to/app/dir/
    

    Source: https://github.com/foreverjs/forever/issues/540

提交回复
热议问题