npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

alchemy-planetscale-logical-db

v1.0.2

Published

Alchemy v2 resource for managing logical PostgreSQL databases inside PlanetScale Postgres clusters.

Downloads

297

Readme

alchemy-planetscale-logical-db

Alchemy v2 resource for managing logical PostgreSQL databases inside a PlanetScale Postgres cluster.

This package exists because a logical PostgreSQL database is not a first-class PlanetScale cloud resource. The resource connects through a PlanetScale Postgres admin role and reconciles database-local state:

  • creates or drops one PostgreSQL database inside the cluster
  • writes an ownership marker inside the logical database
  • applies forward-only migration files once
  • reapplies changed import/seed files
  • grants an application role access to user tables and sequences

Install

NPM Version

pnpm add alchemy-planetscale-logical-db

The package expects Alchemy v2 and Effect from the consuming project:

pnpm add [email protected] [email protected]

Usage

import * as Alchemy from "alchemy"
import * as Output from "alchemy/Output"
import * as Planetscale from "alchemy/Planetscale"
import * as PlanetscaleLogicalDb from "alchemy-planetscale-logical-db"
import * as Effect from "effect/Effect"
import * as Layer from "effect/Layer"

const program = Effect.gen(function* () {
  const database = yield* Planetscale.PostgresDatabase("SharedPostgres", {
    clusterSize: "PS_20",
    defaultBranch: "main",
    name: "shared-postgres",
    region: { slug: "us-east" },
  })

  const adminRole = yield* Planetscale.PostgresRole("AdminRole", {
    branch: "main",
    database,
    inheritedRoles: ["postgres"],
    successor: "postgres",
  })

  const appRole = yield* Planetscale.PostgresRole("AppRole", {
    branch: "main",
    database,
    inheritedRoles: [],
    successor: "postgres",
  })

  return yield* PlanetscaleLogicalDb.PostgresLogicalDatabase("AppDatabase", {
    adminOrigin: adminRole.origin,
    appRoleName: Output.map(appRole.username, PlanetscaleLogicalDb.postgresRoleNameFromUsername),
    appRolePrivilegesVersion: 1,
    migrationsDir: "./migrations/app",
    name: "app",
  })
})

export class DatabaseStack extends Alchemy.Stack<DatabaseStack, unknown>()("Database") {}

export default DatabaseStack.make(
  {
    providers: Layer.mergeAll(Planetscale.providers(), PlanetscaleLogicalDb.providers()),
    state: Alchemy.localState(),
  },
  program,
)

API

PostgresLogicalDatabase(id, props) accepts:

  • adminOrigin: admin Postgres origin from a role that can create databases.
  • name: logical database name. If omitted, Alchemy generates one.
  • appRoleName: Postgres-visible app role name to grant.
  • appRolePrivilegesVersion: bump to force privilege reconciliation.
  • migrationsDir: directory of forward-only .sql migration files.
  • migrationsTable: migration tracking table, defaulting to __alchemy_migrations.
  • importFiles: SQL files to apply as mutable imports/seed data.
  • importsTable: import tracking table, defaulting to __alchemy_imports.

The resource type remains Planetscale.PostgresLogicalDatabase for state compatibility with the original upstream branch.

Example

The original PlanetScale + PGLite + Hyperdrive example lives in example/. It shows one shared PlanetScale Postgres cluster with two logical databases and one Cloudflare Hyperdrive-backed Vite Worker.