@vinaystwt/xmpp-logger 0.1.0 → 0.1.1
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 +35 -0
- package/package.json +5 -3
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @vinaystwt/xmpp-logger
|
|
2
|
+
|
|
3
|
+
xMPP Logger is the shared structured logging package used across xMPP services and libraries.
|
|
4
|
+
|
|
5
|
+
It keeps gateway, service, SDK, and runtime logs consistent across the stack.
|
|
6
|
+
|
|
7
|
+
## Position In The Package Family
|
|
8
|
+
|
|
9
|
+
Most builders should start with:
|
|
10
|
+
|
|
11
|
+
- `@vinaystwt/xmpp-core`
|
|
12
|
+
- `@vinaystwt/xmpp-mcp`
|
|
13
|
+
|
|
14
|
+
Use `@vinaystwt/xmpp-logger` directly only if you want the same logging conventions in custom xMPP-adjacent tooling.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install @vinaystwt/xmpp-logger
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Best For
|
|
23
|
+
|
|
24
|
+
- shared JSON logging across xMPP services
|
|
25
|
+
- keeping local tooling aligned with xMPP log output
|
|
26
|
+
|
|
27
|
+
## Related Packages
|
|
28
|
+
|
|
29
|
+
- `@vinaystwt/xmpp-config`
|
|
30
|
+
- `@vinaystwt/xmpp-core`
|
|
31
|
+
|
|
32
|
+
## Docs
|
|
33
|
+
|
|
34
|
+
- repo:
|
|
35
|
+
- https://github.com/Vinaystwt/xMPP
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vinaystwt/xmpp-logger",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Structured logging package used across xMPP services, gateways, and SDK modules.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
+
"README.md",
|
|
11
12
|
"LICENSE"
|
|
12
13
|
],
|
|
13
14
|
"sideEffects": false,
|
|
@@ -24,7 +25,8 @@
|
|
|
24
25
|
"xmpp",
|
|
25
26
|
"logger",
|
|
26
27
|
"stellar",
|
|
27
|
-
"agents"
|
|
28
|
+
"agents",
|
|
29
|
+
"services"
|
|
28
30
|
],
|
|
29
31
|
"exports": {
|
|
30
32
|
".": {
|