@manojkmfsi/monodog 1.0.15 → 1.0.16
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/README.md +5 -4
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## 🎯 Overview
|
|
4
4
|
|
|
5
|
-
The dashboard will provide visual management and monitoring capabilities for packages in monorepos using pnpm. It will be distributed as an npm package installable in any monorepo to auto-generate a web UI for package oversight.
|
|
5
|
+
The dashboard will provide visual management and monitoring capabilities for packages in monorepos using pnpm, turbo. It will be distributed as an npm package installable in any monorepo to auto-generate a web UI for package oversight.
|
|
6
6
|
|
|
7
7
|
This service is typically run locally or on a central server and power a dedicated frontend dashboard.
|
|
8
8
|
<img width="1593" height="807" alt="package-scan" src="https://github.com/user-attachments/assets/d7e86b80-9f6a-4608-9103-68e6d660cc36" />
|
|
@@ -37,11 +37,12 @@ You must have the following installed to run the service:
|
|
|
37
37
|
|
|
38
38
|
Install monodog in a monorepo workspace root:
|
|
39
39
|
|
|
40
|
-
pnpm
|
|
40
|
+
pnpm dlx @mindfiredigital/monodog
|
|
41
|
+
|
|
41
42
|
|
|
42
43
|
Run app using serve script:
|
|
43
44
|
|
|
44
|
-
|
|
45
|
+
cd ./monodog/ && npm run serve
|
|
45
46
|
|
|
46
47
|
### Key API Endpoints
|
|
47
48
|
|
|
@@ -49,7 +50,7 @@ Run app using serve script:
|
|
|
49
50
|
| ------- | --------------------------- | --------------------------------------------------------------------------------------- | ------------------- |
|
|
50
51
|
| **GET** | `/api/packages` | Retrieve all package metadata from the database. | Persistent |
|
|
51
52
|
| **GET** | `/api/packages/refresh` | Trigger a full file scan of the monorepo and update/sync the database. | Triggers write |
|
|
52
|
-
| **GET** | `/api/packages/:name` | Get detailed info, commits
|
|
53
|
+
| **GET** | `/api/packages/:name` | Get detailed info, commits and health status for a package. | Persistent |
|
|
53
54
|
| **GET** | `/api/health/packages` | Fetch the latest health metrics (score, build status) for all packages. | Persistent |
|
|
54
55
|
| **GET** | `/api/health/refresh` | Recalculate all package health metrics (tests, lint, security) and update the database. | Triggers write |
|
|
55
56
|
| **GET** | `/api/commits/:packagePath` | Fetch Git commit history for a specific package directory. | Persistent |
|