# 介紹 PM2 是一個可以方便處理 node process 的工具
大多用於線上環境
這邊主要紀錄 PM2 的一些用法與指令
# 基本使用 可以參考官方文件 PM2 Process Management Quick Start
安裝
npm install pm2 -g 啟動
pm2 start <要啟動的 js> 通常建議啟動時的指令搭配以下參數(更多參數請詳閱文件)
# Specify an app name --name <app_name> # Watch and Restart app when files change --watch # Set memory threshold for app reload --max-memory-restart <200MB> # Specify log file --log <log_path> # 重新載入 pm2 reload <要重啟的 app> 大多用於程式部署更新後, 有較好的體驗(和 restart 相比)
...