Performance: PM2 for process management
MEDIUM IMPACT
PM2 affects server-side process management impacting backend response time and uptime, indirectly influencing frontend load speed and user experience.
pm2 start app.js --watch
node app.js
| Pattern | CPU Usage | Memory Usage | Downtime Risk | Verdict |
|---|---|---|---|---|
| No process manager (node app.js) | Low initially | Low initially | High (crashes cause downtime) | [X] Bad |
| PM2 with process monitoring | Slightly higher (~5% overhead) | Slightly higher | Very low (auto-restart) | [OK] Good |