pm2-dashboard 0.0.2

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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +1 -0
  3. package/package.json +24 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # pm2-dashboard
2
+
3
+ Self-hosted web dashboard for PM2. Monitor processes, view logs, manage restarts.
4
+
5
+ > Work in progress. Full release coming soon.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ // pm2-dashboard — coming soon
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "pm2-dashboard",
3
+ "version": "0.0.2",
4
+ "description": "Self-hosted web dashboard for PM2. Monitor processes, view logs, manage restarts.",
5
+ "keywords": [
6
+ "pm2",
7
+ "dashboard",
8
+ "monitor",
9
+ "web ui",
10
+ "process manager",
11
+ "self-hosted",
12
+ "logs",
13
+ "nodejs"
14
+ ],
15
+ "license": "MIT",
16
+ "main": "index.js",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/orchidfiles/pm2-dashboard"
20
+ },
21
+ "engines": {
22
+ "node": ">=22.0.0"
23
+ }
24
+ }