neon-serverless

โดย neondatabase

Configures Neon Serverless Driver for Next.js, Vercel Edge Functions, AWS Lambda, and other serverless environments. Installs @neondatabase/serverless, sets up…

npx skills add https://github.com/neondatabase/ai-rules --skill neon-serverless

Neon Serverless Skill

Configures the Neon Serverless Driver for optimal performance in serverless and edge computing environments.

When to Use

  • Setting up connections for edge functions (Vercel Edge, Cloudflare Workers)
  • Configuring serverless APIs (AWS Lambda, Google Cloud Functions)
  • Optimizing for low-latency database access
  • Implementing connection pooling for high-throughput apps

Not recommended for: Complex multi-statement transactions (use WebSocket Pool), persistent servers (use native PostgreSQL drivers), or offline-first applications.

Code Generation Rules

When generating TypeScript/JavaScript code:

  • BEFORE generating import statements, check tsconfig.json for path aliases (compilerOptions.paths)
  • If path aliases exist (e.g., "@/": ["./src/"]), use them (e.g., import { x } from '@/lib/utils')
  • If NO path aliases exist or unsure, ALWAYS use relative imports (e.g., import { x } from '../../../lib/utils')
  • Verify imports match the project's configuration
  • Default to relative imports - they always work regardless of configuration

Reference Documentation

Primary Resource: See [neon-serverless.mdc](https://raw.githubusercontent.com/neondatabase-labs/ai-rules/main/neon-serverless.mdc) in project root for comprehensive guidelines including:

  • Installation and compatibility requirements
  • HTTP vs WebSocket adapter selection
  • Connection pooling strategies
  • Query optimization patterns
  • Error handling and troubleshooting

Quick Setup

Installation

npm install @neondatabase/serverless

Connection Patterns

HTTP Client (recommended for edge/serverless):

import { neon } from '@neondatabase/serverless';
const sql = neon(process.env.DATABASE_URL!);
const rows = await sql`SELECT * FROM users WHERE id = ${userId}`;

WebSocket Pool (for Node.js long-lived connections):

import { Pool } from '@neondatabase/serverless';
const pool = new Pool({ connectionString: process.env.DATABASE_URL! });
const result = await pool.query('SELECT * FROM users WHERE id = $1', [userId]);

See templates/ for complete examples:

  • templates/http-connection.ts - HTTP client setup
  • templates/websocket-pool.ts - WebSocket pool configuration

Validation

Use scripts/validate-connection.ts to test your database connection before deployment.

Related Skills

  • neon-auth - Add authentication
  • neon-js - Full SDK with auth + data API
  • neon-drizzle - For ORM with serverless connections
  • neon-toolkit - For ephemeral database testing

Want best practices in your project? Run neon-plugin:add-neon-docs with parameter SKILL_NAME="neon-serverless" to add reference links.

Skills เพิ่มเติมจาก neondatabase

add-neon-docs
neondatabase
ใช้ทักษะนี้เมื่อผู้ใช้ขอให้เพิ่มเอกสาร เพิ่มเอกสารอ้างอิง เพิ่มข้อมูลอ้างอิง หรือติดตั้งเอกสารเกี่ยวกับ Neon เพิ่มลิงก์อ้างอิงแนวทางปฏิบัติที่ดีที่สุดของ Neon…
official
neon-auth
neondatabase
ตั้งค่า Neon Auth สำหรับแอปพลิเคชันของคุณ กำหนดค่าการยืนยันตัวตน สร้างเส้นทางสำหรับการยืนยันตัวตน และสร้างส่วนประกอบ UI ใช้เมื่อเพิ่มการยืนยันตัวตนให้กับ Next.js,…
official
neon-drizzle
neondatabase
สร้างการตั้งค่า Drizzle ORM ที่ทำงานได้อย่างสมบูรณ์พร้อมฐานข้อมูล Neon ที่เตรียมไว้ ติดตั้ง dependencies จัดเตรียมข้อมูลรับรองฐานข้อมูล กำหนดค่าการเชื่อมต่อ…
official
neon-js
neondatabase
ตั้งค่า Neon JS SDK แบบสมบูรณ์พร้อมการยืนยันตัวตนแบบรวมและการค้นหาฐานข้อมูลสไตล์ PostgREST กำหนดค่าไคลเอนต์การยืนยันตัวตน ไคลเอนต์ข้อมูล และการสร้างประเภท ใช้เมื่อ...
official
neon-serverless
neondatabase
กำหนดค่า Neon Serverless Driver สำหรับ Next.js, Vercel Edge Functions, AWS Lambda และสภาพแวดล้อมแบบไร้เซิร์ฟเวอร์อื่นๆ ติดตั้ง @neondatabase/serverless ตั้งค่า…
official
neon-toolkit
neondatabase
สร้างและจัดการฐานข้อมูล Neon แบบชั่วคราวสำหรับการทดสอบ, ไปป์ไลน์ CI/CD, และสภาพแวดล้อมการพัฒนาแบบแยกส่วน ใช้เมื่อสร้างฐานข้อมูลชั่วคราวสำหรับ…
official
logging-best-practices
neondatabase
แนวทางปฏิบัติที่ดีที่สุดในการบันทึกข้อมูลที่เน้นเหตุการณ์กว้าง (canonical log lines) เพื่อการดีบักและการวิเคราะห์ที่มีประสิทธิภาพ
official
skill-creator
neondatabase
คู่มือสำหรับการสร้างสกิลที่มีประสิทธิภาพ สกิลนี้ควรใช้เมื่อผู้ใช้ต้องการสร้างสกิลใหม่ (หรืออัปเดตสกิลที่มีอยู่) ที่ขยายความสามารถของ Claude...
official