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 CHANGED
@@ -1,8 +1,20 @@
1
1
  # 🔍 flow-debugger
2
2
 
3
- **Production-safe flow-level debugging SDK for Node.js, Web, and React Native.**
3
+ **Production-safe flow-level debugging SDK for Node.js.**
4
+ *Traces, Timelines, and Root Cause Analysis with Zero Effort.*
4
5
 
5
- Traces requests step-by-step, measures timing, classifies errors, detects root causes, and provides endpoint analytics with a live dashboard.
6
+ ---
7
+
8
+ ![Flow Debugger Dashboard](https://raw.githubusercontent.com/sannuk79/debugerpackages/main/assets/DASHBOARD.png)
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]
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flow-debugger",
3
- "version": "1.1.0",
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",