pm2-orbit 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/pm2-orbit.js +1 -3
- package/dist/server.js +302 -302
- package/dist-ui/assets/{cmdk-D6Y8xHyf.js → cmdk-cQPtLM7A.js} +1 -1
- package/dist-ui/assets/{icons-DvbqpVzZ.js → icons-DrhhrejX.js} +62 -47
- package/dist-ui/assets/index-BZ05ZyIP.css +1 -0
- package/dist-ui/assets/index-V_LzcrdQ.js +57 -0
- package/dist-ui/assets/{table-virtual-Oq2FLz9e.js → table-virtual-B1rL38m-.js} +1 -1
- package/dist-ui/index.html +5 -5
- package/package.json +9 -3
- package/dist-ui/assets/index-BhKDPSwo.css +0 -1
- package/dist-ui/assets/index-WtC1_5oL.js +0 -56
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PM2 Orbit
|
|
2
2
|
|
|
3
|
-
> High-performance, real-time PM2 monitoring dashboard. Event-driven architecture supporting
|
|
3
|
+
> High-performance, real-time PM2 monitoring dashboard. Event-driven architecture supporting 100+ processes with zero configuration.
|
|
4
4
|
|
|
5
5
|
<img width="1918" height="932" alt="image" src="https://github.com/user-attachments/assets/ea4c4aac-86ed-455b-96e1-458662c55cb2" />
|
|
6
6
|
|
package/bin/pm2-orbit.js
CHANGED
|
@@ -83,9 +83,7 @@ if (!checkDependency('pm2')) {
|
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
|
|
87
|
-
installDependency('better-sqlite3', 'better-sqlite3 (optional, for persistence)');
|
|
88
|
-
}
|
|
86
|
+
// better-sqlite3 is optional — skip auto-install (requires native compilation)
|
|
89
87
|
|
|
90
88
|
// Set theme from CLI
|
|
91
89
|
if (args.theme) process.env.PM2_ORBIT_THEME = args.theme;
|