@logtape/logtape 1.3.0-dev.386 → 1.3.0-dev.388
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 +8 -0
- package/deno.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,6 +96,8 @@ list of the packages in the LogTape monorepo:
|
|
|
96
96
|
| [*@logtape/drizzle-orm*](/packages/drizzle-orm/) | [JSR][jsr:@logtape/drizzle-orm] | [npm][npm:@logtape/drizzle-orm] | [Drizzle ORM] integration |
|
|
97
97
|
| [*@logtape/express*](/packages/express/) | [JSR][jsr:@logtape/express] | [npm][npm:@logtape/express] | [Express] integration |
|
|
98
98
|
| [*@logtape/fastify*](/packages/fastify/) | [JSR][jsr:@logtape/fastify] | [npm][npm:@logtape/fastify] | [Fastify] integration |
|
|
99
|
+
| [*@logtape/hono*](/packages/hono/) | [JSR][jsr:@logtape/hono] | [npm][npm:@logtape/hono] | [Hono] integration |
|
|
100
|
+
| [*@logtape/koa*](/packages/koa/) | [JSR][jsr:@logtape/koa] | [npm][npm:@logtape/koa] | [Koa] integration |
|
|
99
101
|
| [*@logtape/file*](/packages/file/) | [JSR][jsr:@logtape/file] | [npm][npm:@logtape/file] | File sinks |
|
|
100
102
|
| [*@logtape/otel*](/packages/otel/) | [JSR][jsr:@logtape/otel] | [npm][npm:@logtape/otel] | [OpenTelemetry] sink |
|
|
101
103
|
| [*@logtape/pretty*](/packages/pretty/) | [JSR][jsr:@logtape/pretty] | [npm][npm:@logtape/pretty] | Beautiful text formatter |
|
|
@@ -108,6 +110,8 @@ list of the packages in the LogTape monorepo:
|
|
|
108
110
|
[Drizzle ORM]: https://orm.drizzle.team/
|
|
109
111
|
[Express]: https://expressjs.com/
|
|
110
112
|
[Fastify]: https://fastify.dev/
|
|
113
|
+
[Hono]: https://hono.dev/
|
|
114
|
+
[Koa]: https://koajs.com/
|
|
111
115
|
[OpenTelemetry]: https://opentelemetry.io/
|
|
112
116
|
[Pino]: https://github.com/pinojs/pino
|
|
113
117
|
[Sentry]: https://sentry.io/
|
|
@@ -126,6 +130,10 @@ list of the packages in the LogTape monorepo:
|
|
|
126
130
|
[npm:@logtape/express]: https://www.npmjs.com/package/@logtape/express
|
|
127
131
|
[jsr:@logtape/fastify]: https://jsr.io/@logtape/fastify
|
|
128
132
|
[npm:@logtape/fastify]: https://www.npmjs.com/package/@logtape/fastify
|
|
133
|
+
[jsr:@logtape/hono]: https://jsr.io/@logtape/hono
|
|
134
|
+
[npm:@logtape/hono]: https://www.npmjs.com/package/@logtape/hono
|
|
135
|
+
[jsr:@logtape/koa]: https://jsr.io/@logtape/koa
|
|
136
|
+
[npm:@logtape/koa]: https://www.npmjs.com/package/@logtape/koa
|
|
129
137
|
[jsr:@logtape/file]: https://jsr.io/@logtape/file
|
|
130
138
|
[npm:@logtape/file]: https://www.npmjs.com/package/@logtape/file
|
|
131
139
|
[jsr:@logtape/otel]: https://jsr.io/@logtape/otel
|
package/deno.json
CHANGED