@logtape/logtape 1.3.0-dev.387 → 1.3.0-dev.397
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 +9 -0
- package/deno.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,6 +40,10 @@ The highlights of LogTape are:
|
|
|
40
40
|
|
|
41
41
|
- *[Dead simple sinks]*: You can easily add your own sinks to LogTape.
|
|
42
42
|
|
|
43
|
+
- *[Framework integrations]*: First-class support for popular frameworks
|
|
44
|
+
like [Express], [Fastify], [Hono], [Koa], and [Drizzle ORM] with automatic
|
|
45
|
+
HTTP request logging and database query logging.
|
|
46
|
+
|
|
43
47
|

|
|
44
48
|

|
|
45
49
|
|
|
@@ -60,6 +64,7 @@ The highlights of LogTape are:
|
|
|
60
64
|
[Template literals]: https://logtape.org/manual/start#how-to-log
|
|
61
65
|
[Built-in data redaction]: https://logtape.org/manual/redaction
|
|
62
66
|
[Dead simple sinks]: https://logtape.org/manual/sinks
|
|
67
|
+
[Framework integrations]: https://logtape.org/manual/integrations
|
|
63
68
|
|
|
64
69
|
|
|
65
70
|
Installation
|
|
@@ -97,6 +102,7 @@ list of the packages in the LogTape monorepo:
|
|
|
97
102
|
| [*@logtape/express*](/packages/express/) | [JSR][jsr:@logtape/express] | [npm][npm:@logtape/express] | [Express] integration |
|
|
98
103
|
| [*@logtape/fastify*](/packages/fastify/) | [JSR][jsr:@logtape/fastify] | [npm][npm:@logtape/fastify] | [Fastify] integration |
|
|
99
104
|
| [*@logtape/hono*](/packages/hono/) | [JSR][jsr:@logtape/hono] | [npm][npm:@logtape/hono] | [Hono] integration |
|
|
105
|
+
| [*@logtape/koa*](/packages/koa/) | [JSR][jsr:@logtape/koa] | [npm][npm:@logtape/koa] | [Koa] integration |
|
|
100
106
|
| [*@logtape/file*](/packages/file/) | [JSR][jsr:@logtape/file] | [npm][npm:@logtape/file] | File sinks |
|
|
101
107
|
| [*@logtape/otel*](/packages/otel/) | [JSR][jsr:@logtape/otel] | [npm][npm:@logtape/otel] | [OpenTelemetry] sink |
|
|
102
108
|
| [*@logtape/pretty*](/packages/pretty/) | [JSR][jsr:@logtape/pretty] | [npm][npm:@logtape/pretty] | Beautiful text formatter |
|
|
@@ -110,6 +116,7 @@ list of the packages in the LogTape monorepo:
|
|
|
110
116
|
[Express]: https://expressjs.com/
|
|
111
117
|
[Fastify]: https://fastify.dev/
|
|
112
118
|
[Hono]: https://hono.dev/
|
|
119
|
+
[Koa]: https://koajs.com/
|
|
113
120
|
[OpenTelemetry]: https://opentelemetry.io/
|
|
114
121
|
[Pino]: https://github.com/pinojs/pino
|
|
115
122
|
[Sentry]: https://sentry.io/
|
|
@@ -130,6 +137,8 @@ list of the packages in the LogTape monorepo:
|
|
|
130
137
|
[npm:@logtape/fastify]: https://www.npmjs.com/package/@logtape/fastify
|
|
131
138
|
[jsr:@logtape/hono]: https://jsr.io/@logtape/hono
|
|
132
139
|
[npm:@logtape/hono]: https://www.npmjs.com/package/@logtape/hono
|
|
140
|
+
[jsr:@logtape/koa]: https://jsr.io/@logtape/koa
|
|
141
|
+
[npm:@logtape/koa]: https://www.npmjs.com/package/@logtape/koa
|
|
133
142
|
[jsr:@logtape/file]: https://jsr.io/@logtape/file
|
|
134
143
|
[npm:@logtape/file]: https://www.npmjs.com/package/@logtape/file
|
|
135
144
|
[jsr:@logtape/otel]: https://jsr.io/@logtape/otel
|
package/deno.json
CHANGED