node-pg-migrate VS refinery

Compare node-pg-migrate vs refinery and see what are their differences.

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
node-pg-migrate refinery
4 6
1,229 1,213
1.5% 1.8%
9.4 7.1
6 days ago 7 days ago
TypeScript Rust
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

node-pg-migrate

Posts with mentions or reviews of node-pg-migrate. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-20.
  • Fully featured Repository Pattern with Typescript and native PostgreSQL driver
    5 projects | dev.to | 20 Mar 2022
    Why PG? For the clarity of the article to a large circle of developers, the entire explanation will be built by PostgreSQL and PG package. And in a real project, the database schema will change over time, and in order to be able to perform migrations, we will use Node PG migrate.
  • New to PostgreSQL - Best way to use it?
    6 projects | /r/PostgreSQL | 25 Jan 2022
    b) How you will manage schema migrations: every time you change tables, columns, foreign keys, every time you create or modify stored procedures, and so on, you need to do this through a migration. Here I'm at loss to recommend anything specific, but if you went with Prisma, I would read their docs and use whatever they are recommending you (if they actually recommend something). If you want something more neutral but still in the node ecosystem, node-pg-migrate might be the winner here? I'm not sure.
  • Postgres: What is the development process?
    3 projects | /r/PostgreSQL | 17 Oct 2021
    You’ll probably want something like this too: https://github.com/salsita/node-pg-migrate
  • The Architecture of a One-Man SaaS
    16 projects | news.ycombinator.com | 8 Apr 2021
    You can use any normal DB migration tool. For k8s, I put the app's readiness probe to false, run the migrations and then toggle the probe back to true.

    Here are some migration libraries:

    Go - https://github.com/golang-migrate/migrate

    Node - https://github.com/salsita/node-pg-migrate

refinery

Posts with mentions or reviews of refinery. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-01.
  • Database Migrations
    2 projects | news.ycombinator.com | 1 Oct 2023
    Great write up! At PeerDB, we’ve been using refinery https://github.com/rust-db/refinery to handle database migrations of our catalog Postgres database from Rust. It is easy, typesafe and gets the job done. Thought this would be useful for users building apps with Rust!
  • Sqlx, diesel, orm or other sqlx query ?
    3 projects | /r/rust | 18 May 2023
    I don't think migrations need to be tied to ORM. We have refinery that allows you to write migrations in rust. I, personally, didn't like and prefer writing them in SQL - why learn how to migrations in X when you already know the SQL dialect that you're using.
  • Ask HN: ORM or Native SQL?
    10 projects | news.ycombinator.com | 6 Jan 2023
    The best solution I've ever seen is this Rust library https://github.com/cornucopia-rs/cornucopia

    You write plain SQL for you schema (just a schema.sql is enough) and plain SQL functions for your queries. Then it generates Rust types and Rust functions from from that. If you don't use Rust, maybe there's a library like that for your favorite language.

    Optionally, pair it with https://github.com/bikeshedder/tusker or https://github.com/blainehansen/postgres_migrator (both are based off https://github.com/djrobstep/migra) to generate migrations by diffing your schema.sql files, and https://github.com/rust-db/refinery to perform those migrations.

    Now, if you have simple crud needs, you should probably use https://postgrest.org/en/stable/ and not an ORM. There are packages like https://www.npmjs.com/package/@supabase/postgrest-js (for JS / typescript) and probably for other languages too.

    If you insist on an ORM, the best of the bunch is prisma https://www.prisma.io/ - outside of the typescript/javascript ecosystem it has ports for some other languages (with varying degrees of completion), the one I know about is the Rust one https://prisma.brendonovich.dev/introduction

  • New to PostgreSQL - Best way to use it?
    6 projects | /r/PostgreSQL | 25 Jan 2022
    What I personally use here is Refinery, but it's within the Rust ecosystem. It lets you write your migrations in pure SQL - which is what I prefer - but still requires about 5 lines of boilerplate Rust code.
  • Part of SQLx will become proprietary
    5 projects | /r/rust | 1 Feb 2021
    Example refinery migrations

What are some alternatives?

When comparing node-pg-migrate and refinery you can also consider the following projects:

sql-lint - An SQL linter

sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.

graphjin - GraphJin - Build NodeJS / GO APIs in 5 minutes not weeks

serde_postgres - Easily Deserialize Postgres rows.

logpaste - A simple web service for storing text log files

postgres_migrator - A postgres migration generator and runner that uses raw declarative sql.

prawn-stack - A pageview counter using the AWS free tier, Postgres, Node and React

pggen - Generate type-safe Go for any Postgres query. If Postgres can run the query, pggen can generate code for it.

flan - A tasty tool that lets you save, load and share postgres snapshots with ease

pgroll - PostgreSQL zero-downtime migrations made easy

migrate - Database migrations. CLI and Golang library.

tusker - PostgreSQL migration management tool