This guide describes how to create a Neon project and connect to it from an Express application.
Choose a driver
@neondatabase/serverlessconnects over HTTP or WebSockets instead of TCP. Use it for serverless and edge platforms without built-in connection pooling (Vercel, Netlify Functions, Deno Deploy, Cloudflare Workers without Hyperdrive).postgres(postgres.js) is a fast, full-featured client for both serverless and traditional Node.js server environments.pg(node-postgres) is the classic, widely-used driver for traditional, long-running Node.js servers. Also the standard choice for Vercel Fluid compute and Cloudflare with Hyperdrive.
For a detailed comparison including all platforms, see Choosing your connection method.
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 an Express project and add dependencies
-
Create an Express project and change to the newly created directory.
mkdir neon-express-example cd neon-express-example npm init -y npm install express -
Add project dependencies using one of the following commands:
npm install @neondatabase/serverless dotenv
-
Store your Neon credentials
Add a
.envfile to your project directory and add your Neon connection details to it. Find your database connection details by clicking the Connect button on your Project Dashboard to open the Connect to your database modal. Select Node.js from the Connection string dropdown. For more information, see Connect from any application.DATABASE_URL="postgresql://<user>:<password>@<endpoint_hostname>.neon.tech:<port>/<dbname>?sslmode=require&channel_binding=require"important
Never hardcode credentials in source code files. Always use environment variables via
process.env. For more information, see Security overview.Configure the Postgres client
Add an
index.jsfile to your project directory and add the following code snippet to connect to your Neon database:require('dotenv').config(); const express = require('express'); const { neon } = require('@neondatabase/serverless'); const app = express(); const PORT = process.env.PORT || 4242; const sql = neon(process.env.DATABASE_URL); app.get('/', async (req, res) => { try { const [result] = await sql`SELECT version()`; const version = result?.version || 'No version found'; res.json({ version }); } catch (error) { console.error('Database query failed:', error); res.status(500).json({ error: 'Failed to connect to the database.' }); } }); app.listen(PORT, () => { console.log(`Listening to http://localhost:${PORT}`); });Run index.js
Run
node index.jsto view the result on localhost:4242 as follows:{ version: 'PostgreSQL 16.0 on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit' }
Notes for AI-assisted setup
- Do not hardcode credentials or connection strings in any
.jssource file. Always use environment variables viaprocess.envanddotenv. - Wrap all database queries in a
try...catchblock. Return a500status with an error message on failure. - When using
pg(node-postgres), declarelet clientbefore thetryblock and callclient?.release()in thefinallyblock. This safely handles cases wherepool.connect()itself fails. - Initialize the connection pool or client outside the route handler, not inside it. Creating a new pool on every request wastes resources.
- Choose the right driver for your platform.
@neondatabase/serverlessis for serverless/edge platforms without TCP support. For long-running Express servers, usepgorpostgres. See Choosing your connection method.
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. For paid plan support options, see Support.








