From d5bea463fa5a44337352331cc888f14b08e2e250 Mon Sep 17 00:00:00 2001 From: Alex Holovach Date: Fri, 3 Oct 2025 09:45:09 -0500 Subject: [PATCH] update README --- README.md | 2 +- packages/otel-drizzle/README.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 435c5a3..c88fc32 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenTelemetry for Next.js ecosystem +# OpenTelemetry for TypeScript ecosystem The released packages: diff --git a/packages/otel-drizzle/README.md b/packages/otel-drizzle/README.md index fefb6db..7df7551 100644 --- a/packages/otel-drizzle/README.md +++ b/packages/otel-drizzle/README.md @@ -18,6 +18,18 @@ yarn add @kubiks/otel-drizzle **Peer Dependencies:** `@opentelemetry/api` >= 1.9.0, `drizzle-orm` >= 0.28.0 +## Supported Frameworks + +Works with any Node.js framework or runtime: + +- ✅ Next.js +- ✅ Express +- ✅ Fastify +- ✅ NestJS +- ✅ Hono +- ✅ Standalone Node.js scripts +- ✅ Any other Node.js application + ## Usage Simply wrap your database connection pool with `instrumentDrizzle()` before passing it to Drizzle: @@ -50,7 +62,9 @@ const instrumentedPool = instrumentDrizzle(pool, { const db = drizzle(instrumentedPool); ``` -### Works with Any Database +### Works with All Drizzle-Supported Databases + +This package supports **all databases that Drizzle ORM supports**, including PostgreSQL, MySQL, SQLite, Turso, Neon, PlanetScale, and more. ```typescript // PostgreSQL with node-postgres