Bun

指南生态系统

将 Neon 的 Serverless Postgres 与 Bun 一起使用

Neon 是一个完全托管的 Serverless Postgres。 Neon 分离了计算和存储,以提供现代开发人员的功能,例如自动缩放、分支、无限存储等等。

首先创建一个项目目录,使用 bun init 初始化目录,并将 Neon serverless driver 添加为项目依赖项。

mkdir bun-neon-postgres
cd bun-neon-postgres
bun init -y
bun add @neondatabase/serverless

创建一个 .env.local 文件,并将您的 Neon Postgres 连接字符串添加到其中。

DATABASE_URL=postgresql://username:password@ep-adj-noun-guid.us-east-1.aws.neon.tech/neondb?sslmode=require

将以下代码粘贴到您项目的 index.ts 文件中。

import { neon } from "@neondatabase/serverless";

// Bun automatically loads the DATABASE_URL from .env.local
// Refer to: https://bun.net.cn/docs/runtime/env for more information
const sql = neon(process.env.DATABASE_URL);

const rows = await sql`SELECT version()`;

console.log(rows[0].version);

使用 bun ./index.ts 启动程序。 Postgres 版本应该会打印到控制台。

bun ./index.ts
PostgreSQL 16.2 on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit

此示例使用了 Neon serverless driver 的 SQL-over-HTTP 功能。 Neon 的 serverless driver 还公开了 ClientPool 构造函数,以启用会话、交互式事务和 node-postgres 兼容性。

请参阅 Neon 的文档,以获得 serverless driver 的完整概述。