LoginSignup
10
11

More than 5 years have passed since last update.

nodeを動かしっぱなしにする方法

Posted at

forever を用いる

npm install forever 

node.jsスクリプトの起動

forever start app.js

実行中スクリプトの表示

forever list

実行中スクリプトの停止や再起動

forever stop
forever stopall
forever restart
10
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11