From 4485dc161ca6f631fc335c8c6b5a1c4ed77d1a79 Mon Sep 17 00:00:00 2001 From: Ayush Amawate Date: Thu, 25 Dec 2025 09:39:52 +0530 Subject: [PATCH] docs: update broken Neon Cloudflare Workers example link Fixed the broken link (http://driz.link/neon-cf-ex) in the Neon connection documentation by replacing it with the correct GitHub repository URL (https://github.com/neondatabase-labs/cloudflare-drizzle-neon). The original shortlink was returning a 404 error. The new link points to an active example repository maintained by neondatabase-labs that demonstrates using Drizzle ORM with the Neon Serverless driver in a Cloudflare Worker. Fixes: drizzle-team/drizzle-orm#5155 Related: drizzle-team/drizzle-orm-docs#598 --- src/content/docs/connect-neon.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/connect-neon.mdx b/src/content/docs/connect-neon.mdx index 3bf388e2e..526a43f9a 100644 --- a/src/content/docs/connect-neon.mdx +++ b/src/content/docs/connect-neon.mdx @@ -25,7 +25,7 @@ Querying over HTTP is faster for single, non-interactive transactions. If you need session or interactive transaction support, or a fully compatible drop-in replacement for the `pg` driver, you can use the WebSocket-based `neon-serverless` driver. You can connect to a Neon database directly using [Postgres](/docs/get-started/postgresql-new) -For an example of using Drizzle ORM with the Neon Serverless driver in a Cloudflare Worker, **[see here.](http://driz.link/neon-cf-ex)** +For an example of using Drizzle ORM with the Neon Serverless driver in a Cloudflare Worker, **[see here.](https://github.com/neondatabase-labs/cloudflare-drizzle-neon)** To use Neon from a serverful environment, you can use the PostgresJS driver, as described in Neon's **[official Node.js docs](https://neon.tech/docs/guides/node)** — see **[docs](#postgresjs)**. #### Step 1 - Install packages