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.

neondatabase की और Skills

add-neon-docs
neondatabase
इस कौशल का उपयोग तब करें जब उपयोगकर्ता Neon के बारे में दस्तावेज़ीकरण, डॉक्स, संदर्भ जोड़ने या दस्तावेज़ीकरण स्थापित करने के लिए कहे। Neon के सर्वोत्तम अभ्यास संदर्भ लिंक जोड़ता है…
official
neon-auth
neondatabase
आपके एप्लिकेशन के लिए Neon Auth सेट करता है। प्रमाणीकरण कॉन्फ़िगर करता है, प्रमाणीकरण रूट बनाता है, और UI घटक उत्पन्न करता है। Next.js में प्रमाणीकरण जोड़ते समय उपयोग करें,…
official
neon-drizzle
neondatabase
एक पूर्णतः कार्यशील Drizzle ORM सेटअप बनाता है जिसमें एक प्रावधानित Neon डेटाबेस होता है। निर्भरताएँ स्थापित करता है, डेटाबेस क्रेडेंशियल्स प्रदान करता है, कनेक्शन कॉन्फ़िगर करता है,…
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
परीक्षण, CI/CD पाइपलाइनों और पृथक विकास वातावरणों के लिए अस्थायी Neon डेटाबेस बनाता और प्रबंधित करता है। अस्थायी डेटाबेस बनाते समय उपयोग करें...
official
logging-best-practices
neondatabase
विस्तृत घटनाओं (कैननिकल लॉग लाइन्स) पर केंद्रित लॉगिंग की सर्वोत्तम प्रथाएँ, जो शक्तिशाली डिबगिंग और विश्लेषण के लिए हैं।
official
skill-creator
neondatabase
प्रभावी कौशल बनाने के लिए मार्गदर्शिका। इस कौशल का उपयोग तब किया जाना चाहिए जब उपयोगकर्ता एक नया कौशल बनाना (या मौजूदा कौशल को अपडेट करना) चाहते हैं जो Claude की क्षमताओं को बढ़ाता है…
official