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

sfm

v1.5.2

Published

simply fabulous migrations for postgresql

Readme

SIMPLY FABULOUS MIGRATIONS

The simplest postgresql migration tool.

Quick start

$ export DATABASE_URL="your database url here"
$ mkdir migrations
$ echo "select 'hello world';" > migrations/000-hello-world.sql

# test that migrations work
$ npx sfm test $DATABASE_URL migrations/

# apply migrations
$ npx sfm run $DATABASE_URL migrations/

# get info about migrations:
$ npx sfm info $DATABASE_URL migrations/

Migrations?

This tool runs your postgresql migrations, and records which ones have been run in a table in the database.

Each script is run in a transaction, by default. This can be disabled for scripts that contain SQL statements that cannot run inside a transaction.

If there is an error running migration, the migration process is stopped and failed migrations are rolled back.

What are migrations?

Migrations can take two forms:

1. SQL scripts.

SQL scripts, with an sql file extension. Each can contain multiple statements.

2. Javascript files

Each javascript migration exports a function that accepts a database client and returns a promise.

The client has a single method: query that takes a sql string and optionally an array of parameters:

module.exports = async (client) => {
  await client.query('CREATE TABLE whatever (who_cares text, not_me int)');
  await client.query('INSERT INTO whatever (who_cares, not_me) VALUES ($1, $2)', ['example', 42])
}

Check out https://node-postgres.com/features/queries for more information on the client interface.

See the /examples directory for a couple of simple examples.

In what order?

The scripts will be sorted alphabetically by filename so use some sort of system with dates or numbers or something for naming the files.

sfm command examples

The command-line arguments are the same for all commands:

sfm [command] [database url] [migrations path] [optional schema name]
  • the command: either "run", "test", or "info"

  • the database url (or database name for localhost)

  • the path to the migration scripts

Defaults to pwd

  • optional: schema name.

Allows the use of sfm to independently manage each schema in a database

  • If a schema name is set:
    • The schema will be created if it doesn't exist
    • The postgres search_path will be set to only contain the specified schema for all migrations
    • the sfm_migrations table that holds data about which migrations will live in the specified schema (ie: my_schema.sfm_migrations)

examples

sfm run

Run migrations:

$ sfm run my_local_db db/migrations/

sfm info

Find out which migrations have been run:

$ sfm info my_local_db

sfm test

Test your migrations.

This will run all unapplied migrations in a transaction and roll back at the end, while logging some information about the queries that were executed.

$ sfm test my_local_db db/migrations/

Run programatically in node:

Import sfm and initialize it with the url from your database:

const sfm = require('sfm').default;

const databaseUrl = process.env.DATABASE_URL

const migrations = sfm(databaseUrl).fromDirectory(path.join(__dirname, '/migrations'))

const result = await migrations.run()

console.log(result)

Additional notes

Specifying schema

If a schema name is specified, sfm will attempt to create the specified schema if it does not exist.

Note that, even with a schema specified, migrations must still specify the schema of tables or other objects that are outside the default schema, including the schema name.

Storage of migration information in the database

sfm stores the migrations that have been run in a table named sfm_migrations.

If schema is specified, this table will be created in the specified schema. If schema is not specified, the table will be created in the default schema.

Disable transactions for a single migration

Adding the text @sfm-no-transaction to the top of the file will disable transactions for that migration.

Note that at present, multi-statement sql files are not supported in no-transaction mode, and also that test mode will halt if it encounters a no-transaction file.