Socket
Book a DemoInstallSign in
Socket

create-db

Package Overview
Dependencies
Maintainers
2
Versions
235
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-db

Instantly create a temporary Prisma Postgres database with one command, then claim and persist it in your Prisma Data Platform project when ready.

latest
Source
npmnpm
Version
1.1.4
Version published
Maintainers
2
Created
Source

create-db

create-db is an open-source CLI tool and library that provisions temporary Prisma Postgres databases with a single command.

Each database is available for 24 hours by default. To keep the database permanently, you can claim it for free using the URL displayed in the output.

This tool is designed for developers who need a fast way to test, prototype, or integrate Prisma Postgres without manual setup or creating an account.

Installation and Usage

No installation required. Simply run:

npx create-db@latest

You can also use these aliases:

npx create-pg@latest
npx create-postgres@latest

CLI Usage

Commands

npx create-db [create]   # Create a new database (default command)
npx create-db regions    # List available regions

Options

FlagAliasDescription
--region <region>-rAWS region for the database
--interactive-iInteractive mode to select a region
--json-jOutput machine-readable JSON
--env <path>-eWrite DATABASE_URL and CLAIM_URL to specified .env file
--help-hShow help message
--versionShow version

Available Regions

  • ap-southeast-1 - Asia Pacific (Singapore)
  • ap-northeast-1 - Asia Pacific (Tokyo)
  • eu-central-1 - Europe (Frankfurt)
  • eu-west-3 - Europe (Paris)
  • us-east-1 - US East (N. Virginia)
  • us-west-1 - US West (N. California)

Examples

# Create database in auto-detected nearest region
npx create-db

# Create database in a specific region
npx create-db --region eu-west-3
npx create-db -r us-east-1

# Interactive region selection
npx create-db --interactive
npx create-db -i

# Output as JSON (useful for scripting)
npx create-db --json
npx create-db -j

# Write connection string to .env file
npx create-db --env .env
npx create-db -e .env.local

# Combine flags
npx create-db -r eu-central-1 -j
npx create-db -i -e .env

# List available regions
npx create-db regions

JSON Output

When using --json, the output includes:

{
  "success": true,
  "connectionString": "postgresql://user:pass@host:5432/postgres?sslmode=require",
  "claimUrl": "https://create-db.prisma.io/claim?projectID=...",
  "deletionDate": "2025-12-13T12:00:00.000Z",
  "region": "us-east-1",
  "name": "2025-12-12T12:00:00.000Z",
  "projectId": "proj_..."
}

Environment File Output

When using --env, the following variables are appended to the specified file:

DATABASE_URL="postgresql://user:pass@host:5432/postgres?sslmode=require"
CLAIM_URL="https://create-db.prisma.io/claim?projectID=..."

Programmatic API

You can also use create-db as a library in your Node.js applications:

npm install create-db
# or
bun add create-db

create(options?)

Create a new Prisma Postgres database programmatically.

import { create } from "create-db";

const result = await create({ region: "us-east-1" });

if (result.success) {
  console.log(`Connection string: ${result.connectionString}`);
  console.log(`Claim URL: ${result.claimUrl}`);
  console.log(`Expires: ${result.deletionDate}`);
} else {
  console.error(`Error: ${result.message}`);
}

Options

OptionTypeDescription
regionRegionIdAWS region for the database (optional, defaults to us-east-1)
userAgentstringCustom user agent string for tracking (optional)

regions()

List available Prisma Postgres regions.

import { regions } from "create-db";

const availableRegions = await regions();
console.log(availableRegions);
// [{ id: "us-east-1", name: "US East (N. Virginia)", status: "available" }, ...]

Type Guards

import { create, isDatabaseSuccess, isDatabaseError } from "create-db";

const result = await create();

if (isDatabaseSuccess(result)) {
  // result is DatabaseResult
  console.log(result.connectionString);
}

if (isDatabaseError(result)) {
  // result is DatabaseError
  console.error(result.message);
}

Types

import type {
  Region,
  RegionId,
  CreateDatabaseResult,
  DatabaseResult,
  DatabaseError,
  ProgrammaticCreateOptions,
} from "create-db";

// RegionId is a union type of available regions
type RegionId = "ap-southeast-1" | "ap-northeast-1" | "eu-central-1" | "eu-west-3" | "us-east-1" | "us-west-1";

// DatabaseResult (success)
interface DatabaseResult {
  success: true;
  connectionString: string | null;
  claimUrl: string;
  deletionDate: string;
  region: string;
  name: string;
  projectId: string;
  userAgent?: string;
}

// DatabaseError (failure)
interface DatabaseError {
  success: false;
  error: string;
  message: string;
  raw?: string;
  details?: unknown;
  status?: number;
}

// CreateDatabaseResult is DatabaseResult | DatabaseError

Region Validation with Zod

import { RegionSchema } from "create-db";

// Validate region input
const result = RegionSchema.safeParse("us-east-1");
if (result.success) {
  console.log("Valid region:", result.data);
}

Claiming a Database

When you create a database, it is temporary and will be deleted after 24 hours.

The output includes a claim URL that allows you to keep the database permanently for free.

What claiming does:

  • Moves the database into your Prisma Data Platform account
  • Prevents it from being auto-deleted
  • Lets you continue using the database as a long-term instance

Next Steps

Keywords

prisma

FAQs

Package last updated on 28 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts