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

@akoenig/effect-sql-inline-migrations

v1.1.0

Published

A migration loader that doesn't consult the filesystem when fetching database migrations.

Readme

Effect SQL Inline Migrations

A migration loader that doesn't consult the filesystem when fetching database migrations.

When is this useful?

This is useful whenever you have a use case where filesystem access is too slow when running migrations.

For example, consider a use case where each tenant has its own database. When rolling out a new release, you need to ensure that migrations are applied for every tenant. Doing this from the outside can be too cumbersome and error-prone, so you might decide to perform the migration on each request that hits the respective tenant. Sounds crazy, right? Well, when utilizing the filesystem, it would be crazy, yes. The built-in filesystem loader can add around 50 ms to every request, which would be unacceptable in most scenarios.

By inlining the migrations (and therefore not accessing the filesystem), it is possible to execute the migrations in 2 ms. Adding 2 ms to every request sounds acceptable. (Disclaimer: I was using SQLite for the benchmark).

Installation

pnpm add @akoenig/effect-sql-inline-migrations

Usage

This loader is a drop-in replacement. Simply swap the ⁠fromFileSystem loader that comes with the respective ⁠@effect/sql database adapter for the ⁠fromArray loader included in this package.

import { Config, Effect, Layer, pipe } from "effect";
import { LibsqlClient, LibsqlMigrator } from "@effect/sql-libsql";
import { NodeContext, NodeRuntime } from "@effect/platform-node";
import { SqlClient } from "@effect/sql";

import { fromArray } from "@akoenig/effect-sql-inline-migrations";

const SqlLive = LibsqlClient.layerConfig({
  url: Config.succeed("file:scratchpad.db"),
});

const MigratorLive = LibsqlMigrator.layer({
  loader: fromArray([
    {
      name: "001_create_users_table",
      effect: Effect.flatMap(
        SqlClient.SqlClient,
        (sql) => sql`
            CREATE TABLE users (
              id serial PRIMARY KEY,
              name varchar(255) NOT NULL,
              created_at TEXT NOT NULL,
              updated_at TEXT NOT NULL
            )
          `,
      ),
    },
    {
      name: "002_create_tasks_table",
      effect: Effect.flatMap(
        SqlClient.SqlClient,
        (sql) => sql`
            CREATE TABLE tasks (
              id serial PRIMARY KEY,
              description varchar(255) NOT NULL,
              created_at TEXT NOT NULL
            )
          `,
      ),
    },
    {
      name: "003_drop_tasks_table",
      effect: Effect.flatMap(
        SqlClient.SqlClient,
        (sql) => sql`
            DROP TABLE tasks;
        `,
      ),
    },
  ]),
}).pipe(Layer.provide(SqlLive));

const EnvLive = Layer.mergeAll(SqlLive, MigratorLive).pipe(
  Layer.provide(NodeContext.layer),
);

const program = Effect.gen(function* () {
  yield* Effect.log("Your program is running");
});

pipe(program, Effect.provide(EnvLive), NodeRuntime.runMain);

As your migrations grow, you can separate them into their own files and import them to create the ⁠migrations array.

License

MIT License