securenow 5.6.0 → 5.7.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/CONSUMING-APPS-GUIDE.md +411 -415
- package/NPM_README.md +1594 -1609
- package/README.md +72 -36
- package/cli/monitor.js +13 -1
- package/cli/run.js +133 -0
- package/cli.js +22 -1
- package/console-instrumentation.js +6 -1
- package/docs/ALL-FRAMEWORKS-QUICKSTART.md +1282 -455
- package/docs/EXPRESS-SETUP-GUIDE.md +719 -720
- package/docs/INDEX.md +14 -3
- package/docs/LOGGING-GUIDE.md +701 -708
- package/docs/LOGGING-QUICKSTART.md +234 -239
- package/docs/NUXT-GUIDE.md +166 -0
- package/nextjs-webpack-config.js +77 -0
- package/nextjs.js +19 -3
- package/nuxt-server-plugin.mjs +400 -0
- package/nuxt.d.ts +60 -0
- package/nuxt.mjs +75 -0
- package/package.json +21 -4
- package/register.js +39 -4
- package/tracing.js +15 -7
package/docs/INDEX.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SecureNow Documentation
|
|
2
2
|
|
|
3
|
-
Complete documentation for SecureNow - OpenTelemetry instrumentation for Node.js
|
|
3
|
+
Complete documentation for SecureNow - OpenTelemetry instrumentation for Node.js, Next.js, and Nuxt with tracing and logging.
|
|
4
4
|
|
|
5
5
|
## 📚 Table of Contents
|
|
6
6
|
|
|
@@ -39,6 +39,12 @@ Complete documentation for SecureNow - OpenTelemetry instrumentation for Node.js
|
|
|
39
39
|
- Server components
|
|
40
40
|
- Middleware
|
|
41
41
|
- Deployment guides
|
|
42
|
+
- **[Nuxt 3 Complete Setup](NUXT-GUIDE.md)** - Step-by-step Nuxt 3 guide
|
|
43
|
+
- One-line module setup
|
|
44
|
+
- Nuxt config options
|
|
45
|
+
- Nitro server tracing
|
|
46
|
+
- Body capture & logging
|
|
47
|
+
- Deployment guides
|
|
42
48
|
|
|
43
49
|
### 📦 Next.js Integration
|
|
44
50
|
|
|
@@ -112,6 +118,10 @@ Complete documentation for SecureNow - OpenTelemetry instrumentation for Node.js
|
|
|
112
118
|
2. Complete guide: [Next.js Setup Complete](NEXTJS-SETUP-COMPLETE.md)
|
|
113
119
|
3. Legacy guide: [Next.js Quickstart](NEXTJS-QUICKSTART.md)
|
|
114
120
|
|
|
121
|
+
### "I'm using Nuxt 3"
|
|
122
|
+
1. Complete guide: [Nuxt 3 Guide](NUXT-GUIDE.md)
|
|
123
|
+
2. Add `securenow/nuxt` to `modules` in `nuxt.config.ts` — that's it
|
|
124
|
+
|
|
115
125
|
### "I want to add logging to my app"
|
|
116
126
|
1. Start with [Logging Quick Start](LOGGING-QUICKSTART.md)
|
|
117
127
|
2. For complete guide: [Logging Complete Guide](LOGGING-GUIDE.md)
|
|
@@ -148,6 +158,7 @@ Complete documentation for SecureNow - OpenTelemetry instrumentation for Node.js
|
|
|
148
158
|
### Complete Framework Guides
|
|
149
159
|
- **Express.js Setup Guide** - Complete Express.js reference
|
|
150
160
|
- **Next.js Setup Complete** - Complete Next.js reference
|
|
161
|
+
- **Nuxt 3 Guide** - Complete Nuxt 3 reference
|
|
151
162
|
- **Logging Complete Guide** - Complete logging reference
|
|
152
163
|
|
|
153
164
|
### Quick Start Guides
|
|
@@ -202,5 +213,5 @@ Key documentation files included in the npm package:
|
|
|
202
213
|
|
|
203
214
|
---
|
|
204
215
|
|
|
205
|
-
**Last Updated:**
|
|
206
|
-
**Package Version:**
|
|
216
|
+
**Last Updated:** April 2, 2026
|
|
217
|
+
**Package Version:** 5.7.0+
|