What is forever in nodejs?

后端 未结 3 1979
清歌不尽
清歌不尽 2021-02-05 09:33

I am having hard time understanding what is forever in nodejs.

Can someone explain what is forever in simplest way that i can understand and what is th

3条回答
  •  情书的邮戳
    2021-02-05 10:11

    Forever basically allows you to run your nodejs application as a process.

    Without forever you might type npm start or node index.js to start your application and it will run in your terminal session.

    With forever, you can start it off and still have access to your terminal session/close it.

提交回复
热议问题