flow-debugger 1.1.0 → 1.2.0
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 +14 -2
- package/assets/DASHBOARD.png +1 -0
- package/flowdebuger.png +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
# 🔍 flow-debugger
|
|
2
2
|
|
|
3
|
-
**Production-safe flow-level debugging SDK for Node.js
|
|
3
|
+
**Production-safe flow-level debugging SDK for Node.js.**
|
|
4
|
+
*Traces, Timelines, and Root Cause Analysis with Zero Effort.*
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
## 🚀 Easy 3-Line Setup (Beginner Friendly)
|
|
11
|
+
Beginners can get a professional dashboard and request tracing with just **3 lines of code**:
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
const debug = flowDebugger({ enableDashboard: true }); // 1. Init
|
|
15
|
+
app.use(debug.middleware); // 2. Middleware
|
|
16
|
+
mongoTracer(mongoose, { getTracer: debug.getTracer }); // 3. Auto-Trace
|
|
17
|
+
```
|
|
6
18
|
|
|
7
19
|
---
|
|
8
20
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[image_data_placeholder]
|
package/flowdebuger.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flow-debugger",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Production-safe flow-level debugging SDK. Traces requests, measures timing, classifies errors, detects root causes, and provides endpoint analytics with a live dashboard.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|