Connect a Bun application to Neon
Set up a Neon project in seconds and connect from a Bun application
This guide describes how to create a Neon project and connect to it from a Bun application. Examples are provided for using Bun's built-in SQL client and the @neondatabase/serverless driver. Use the client you prefer.
Create a Neon project
If you do not have one already, create a Neon project.
- Navigate to the Projects page in the Neon Console.
- Click New Project.
- Specify your project settings and click Create Project.
Create a Bun project and add dependencies
Create a Bun project and change to the newly created directory:
Next, add project dependencies if you intend to use the Neon serverless driver. Otherwise, Bun's built-in
sql
client is readily available.Store your Neon credentials
Add a
.env.local
file to your project directory and add your Neon connection details to it. Bun automatically loads variables from.env
,.env.local
, and other.env.*
files. You can find the connection details for your database in the Connection Details widget on the Neon Dashboard. Please select Bun from the Connection string dropdown. For more information, see Connect from any application.POSTGRES_URL='postgresql://[user]:[password]@[neon_hostname]/[dbname]?sslmode=require'
note
Bun.sql
usesPOSTGRES_URL
as the default environment variable for the Primary connection URL for Postgresimportant
To ensure the security of your data, never expose your Neon credentials directly in your code or commit them to version control.
Configure the Postgres client
Add an
index.ts
file (orindex.js
) to your project directory and add the following code snippet to connect to your Neon database. Choose the configuration that matches your preferred client.import { sql } from 'bun'; async function getPgVersion() { const result = await sql`SELECT version()`; console.log(result[0]); } getPgVersion();
Run index.ts
Run
bun run index.ts
(orbun index.js
) to view the result.$ bun run index.ts { version: "PostgreSQL 17.2 on x86_64-pc-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit", }
Source code
You can find the source code for the application described in this guide on GitHub.
References
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more details, see Getting Support.