@neondatabase/config
v0.8.0
Published
Config-as-Code for the Neon Platform. Define a `neon.ts` policy and inspect/diff/deploy it against the Neon API as plain TypeScript functions.
Downloads
154,252
Readme
@neondatabase/config
Config-as-Code for the Neon Platform. A repo-local neon.ts exports a TypeScript policy function describing a branch's desired state. This package exposes functions to inspect, diff, and deploy that policy against the Neon API.
No CLI commands ship here, and the package is filesystem- and env-agnostic: it never reads
.neonfiles orNEON_*environment variables. You passprojectIdand the target branch explicitly (resolve them in your CLI, e.g. neonctl). This package is functions only.
Install
npm install @neondatabase/configDefine a policy
// neon.ts
import { defineConfig } from "@neondatabase/config/v1";
export default defineConfig({
// Static: what *exists* on every branch. GA service toggles drive the typed env.
auth: true,
dataApi: false,
// Beta (Preview) features, keyed by slug / name.
preview: {
functions: {
hello: { name: "Hello", source: "./functions/hello.ts", dev: { port: 8787 } },
},
},
// Dynamic: per-branch tuning only. Cannot add/remove services or functions.
branch: (branch) => ({
protected: branch.name === "main",
...(branch.name === "main" ? {} : { parent: "main", ttl: "7d" }),
}),
});A policy is split into a static existential set and a dynamic branch closure:
- Static top-level —
auth/dataApi(GA service toggles) and the betapreviewblock (aiGateway,functionskeyed by slug,bucketskeyed by name). Because this is static, the secret set is known at the type level, soparseEnv/fetchEnvfrom@neondatabase/envreturn an exactNeonEnv. branchclosure — receives a read-only descriptor (BranchTarget) of the branch being evaluated (name,id,exists,isDefault,isProtected,parentId,expiresAt) and returns per-branch tuning:parent,ttl,protected,postgres.computeSettings, and per-functionruntime. Function memory is fixed at2048MiB for now and is not user-configurable. It runs both against existing branches and during pre-create evaluation (exists: false). It cannot change which services or functions exist — that is what keeps the static secret set sound.
Service toggles accept true / {} / { enabled: true } (enabled) and false / { enabled: false } (disabled). Function slugs (record keys) must match ^[a-z0-9]{1,20}$.
Data API
dataApi accepts the same boolean/toggle forms or an object that selects the auth provider and reusable runtime settings:
export default defineConfig({
auth: true, // required when the Data API verifies Neon Auth tokens
dataApi: {
// "neon" (default) verifies Neon Auth tokens; "external" verifies a third-party IdP.
authProvider: "neon",
settings: {
dbSchemas: ["public", "api"],
dbMaxRows: 1000,
// dbAnonRole, dbExtraSearchPath, jwtRoleClaimKey, jwtCacheMaxLifetime,
// openapiMode ("ignore-privileges" | "disabled"), serverCorsAllowedOrigins,
// serverTimingEnabled — all optional, camelCase mirrors of the Neon API.
},
},
});// External IdP (Clerk / Stytch / Auth0 / …): you provide the JWKS wiring, and no Neon Auth is required.
export default defineConfig({
dataApi: {
authProvider: "external",
jwksUrl: "https://your-idp.example.com/.well-known/jwks.json",
providerName: "Clerk", // optional label
jwtAudience: "my-api", // optional; only *rejects* tokens with a different `aud`
settings: { dbSchemas: ["public"] },
},
});Two invariants are enforced both at author time (TypeScript) and at runtime (zod):
authProvider: "neon"requires Neon Auth. A Neon-verified Data API needsauthenabled on the same branch (so the tokens it verifies exist).jwksUrl/providerName/jwtAudienceare forbidden on this variant — Neon supplies them.authProvider: "external"is wherejwksUrl/providerName/jwtAudiencelive, and it does not require Neon Auth.
The auth wiring (authProvider, jwksUrl, …) is set when the Data API is first enabled and is immutable afterwards. The runtime settings are reconcilable: changing them is treated as an update and requires updateExisting: true (apply) / --update-existing (CLI), like compute/TTL/protected drift.
Functions
The three operations mirror the Terraform mental model: inspect (read live state), plan (dry-run diff), apply (reconcile).
projectId and branchId are required — there is no .neon/env fallback. (projectId is required because the Neon management API addresses every branch through its project; deriving it from a branch id would need an extra discovery round-trip.)
import config from "../neon";
import { inspect, plan, apply } from "@neondatabase/config/v1";
const target = { projectId: "patient-art-12345", branchId: "main" };
// Dry-run: what would apply do for this branch? No mutations.
const diff = await plan(config, target);
// Apply the policy to a branch. Never creates projects/branches.
await apply(config, { ...target, updateExisting: true });
// Read a branch's live Neon state as a plain object.
const live = await inspect(target);| Function | Description |
| --- | --- |
| inspect(options) | Returns the branch's live Neon state (project + branch metadata and a reverse-engineered BranchConfig). Read-only. |
| plan(config, options) | Returns the dry-run diff — what apply would do for the branch, with no mutations. Returns a PushResult whose applied holds the plan and conflicts holds blocking drift. |
| apply(config, options) | Reconciles your local neon.ts policy onto the branch. Pass updateExisting to auto-confirm overriding existing remote settings and allowProtectedBranch to auto-confirm applying to a protected branch. |
options requires both projectId and branchId (a Neon branch id, br-…). Resolve branch names to ids before calling. The Neon API key resolves via the apiKey option → NEON_API_KEY → ~/.config/neonctl/credentials.json.
Lower-level engine
inspect / plan / apply are thin wrappers over pullConfig(options) / pushConfig(config, options) (both require projectId + branchId), which are also exported for advanced/programmatic use along with defineConfig, loadConfigFromFile (optional neon.ts loader), createRealNeonApi, the PlatformError base class + ErrorCode enum, the errors and schemas namespaces, and the supporting types.
import {
defineConfig,
inspect,
plan,
apply,
pushConfig,
pullConfig,
loadConfigFromFile,
createRealNeonApi,
resolveApiKey,
PlatformError,
ErrorCode,
errors,
schemas,
} from "@neondatabase/config/v1";Safety Rules
apply/pushConfignever creates projects or branches.auth: {}anddataApi: {}enable those integrations with Neon defaults.auth.enabled: false,dataApi.enabled: false, or absence leaves existing integrations alone. Disabling is destructive and remains explicit/manual.- Mutable branch drift (
protected,ttl,postgres.computeSettings) is reported as a conflict unlessupdateExistingis passed (or aconfirmcallback is supplied topushConfig). - Applying to a branch with the
protectedflag set on Neon requiresallowProtectedBranch(or aconfirmcallback).
Env vars
Connection-string resolution/injection lives in the companion package @neondatabase/env, which depends on this package for the Config type and the Neon API client.
