1、node.js 守護進程組件 forever 安裝 npm install forever -g 安裝完成後截圖: 2、安裝完成後在控制台輸入 forever 出現 -bash: forever: command not found 3、添加環境變數 執行命令 vim /etc/profile ...
1、node.js 守護進程組件 forever 安裝
npm install forever -g
安裝完成後截圖:
2、安裝完成後在控制台輸入 forever 出現
-bash: forever: command not found
3、添加環境變數
執行命令
vim /etc/profile
保存完後執行
source /etc/profile 刷新配置文件 即可執行 forever 命令
然後在node.js 項目根目錄 執行:
forever start bin/www 即可啟動node.js 項目
停止運行項目
forever stop bin/www
forever list 查看守護後臺運行中的項目