temporal_tables VS decap-cms

Compare temporal_tables vs decap-cms and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
temporal_tables decap-cms
6 80
576 17,499
4.0% 0.7%
4.9 9.2
5 months ago 6 days ago
PLpgSQL JavaScript
GNU General Public License v3.0 or later 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.

temporal_tables

Posts with mentions or reviews of temporal_tables. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-20.
  • PostgreSQL temporal_tables extension in PL/pgSQL
    1 project | news.ycombinator.com | 6 Dec 2023
  • Versioning data in Postgres? Testing a Git like approach
    9 projects | news.ycombinator.com | 20 Oct 2023
    It was reimplemented in pure SQL here https://github.com/nearform/temporal_tables for this purpose
  • All the ways to capture changes in Postgres
    12 projects | news.ycombinator.com | 22 Sep 2023
    I enjoyed this blog. I think it provides a great succinct overview of various approaches native to Postgres.

    For the "capture changes in an audit table" section, I've had good experiences at a previous company with the Temporal Tables pattern. Unlike other major RDBMS vendors, it's not built into Postgres itself, but there's a simple pattern [1] you can leverage with a SQL function.

    This allows you to see a table's state as of a specific point in time. Some sample use cases:

    - "What was this user's configuration on Aug 12?"

    - "How many records were unprocessed at 11:55pm last night?"

    - "Show me the diff on feature flags between now and a week ago"

    [1]: https://github.com/nearform/temporal_tables

  • Show HN: I made a CMS that uses Git to store your data
    13 projects | news.ycombinator.com | 23 Oct 2022
    One of these Postgres-based implementations of SQL:2011's temporal versioning features might get you close enough:

    - https://github.com/nearform/temporal_tables

  • How to implement row changes history?
    1 project | /r/PostgreSQL | 27 Jul 2021
    You don't really need to install an extension to use temporal tables, there is an alternative (https://github.com/nearform/temporal_tables) implemented purely as a plpgsql trigger so that it works everywhere.
  • Temporal Tables PostgreSQL Extension
    3 projects | news.ycombinator.com | 9 Apr 2021
    I was part of a team at NearForm using this for a project on an EC2 instance. In order to move to AWS RDS we had to recreate the functionality of temporal_tables as a PostgreSQL function, rather than extension.

    When we switched, we found that although there were minor bugs, we didn't have any noticeable loss of performance and we have used it ever since for many projects.

    https://github.com/nearform/temporal_tables

    If you're also limited by cloud services and the extensions limitations, this is a great solution.

decap-cms

Posts with mentions or reviews of decap-cms. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-22.
  • Show HN: Pages CMS – A CMS for GitHub
    22 projects | news.ycombinator.com | 22 Feb 2024
    Following one of the comments in this thread I reviewed two other products in this space - https://www.staticcms.org/ and https://decapcms.org/ - and it looks like the webpages are almost a direct copy of one another, one in dark mode and one in light mode.

    I'm a technical product marketer, and I find these type of landing page copying amusing to no end.

  • 9 best Git-based CMS platforms for your next project
    5 projects | dev.to | 2 Feb 2024
    Decap CMS, formerly Netlify CMS, is an extensible headless CMS built as a single-page React app. It’s an open source and completely free-to-use option that offers rich-text editing, real-time preview, and drag-and-drop media uploads.
  • Ask HN: Tools for Managing Static Sites?
    3 projects | news.ycombinator.com | 23 Dec 2023
    You can look into a Git-based CMS, such as https://github.com/decaporg/decap-cms

    These typically are designed to support static site generators.

  • Looking for the Best Way to Create and Update a One-Page Event Grid for My City
    1 project | /r/sveltejs | 9 Nov 2023
    I found https://decapcms.org/ which seems like an easy to use.
  • Casidoo on TinaCMS
    10 projects | news.ycombinator.com | 23 Oct 2023
    Did you consider https://decapcms.org/ (previously Netlify CMS)? I'm surprised it never really caught on as it seems a good fit for most small Markdown based sites. Looks like Smashing Magazine was using it before they moved to Tina CMS (https://www.smashingmagazine.com/2020/01/migration-from-word...).
  • The theory versus the practice of “static websites”
    13 projects | news.ycombinator.com | 15 Jul 2023
    Products like [decap CMS](https://github.com/decaporg/decap-cms) try to bridge that gap, but I agree that this space needs to be further developed. In fact I think there needs to be a bunch more work to allow mere mortals to use version control and branch workflows in day to day work.
  • How to build a website without frameworks and tons of libraries
    17 projects | news.ycombinator.com | 4 Jul 2023
    I've thought of something similar! A git-based flow for a friend's static portfolio site, where he can make text edits and upload images, and the site builds that content with HTML templates.

    Not sure how the GitHub markdown editor would feel for the user. It might be really great, even for uploading images.

    I was imagining a static admin page, WYSIWYG, that makes git pushes on submit. These were the headless CMSs that seem to be able to accomplish that:

    https://www.siteleaf.com/

    https://decapcms.org/

    And not git based, but similar idea: https://editable.website/

    And this is what the admin edit page usually looks like: https://quick-edit-demo.vercel.app/admin/index.html#/collect...

    But was taking a bit of work to configure.

  • Looking for a statically deployed site-builder / CMS that stores content in GitHub
    3 projects | /r/selfhosted | 10 Jun 2023
    Since I made my post, I've also discovered Decap CMS. This looks fairly close to what I was looking for - it deploys as a static SPA alongside the site on a /admin route, allows login with Github (and several other platforms), and builds the site using a choice of static site generator like Gatsby/Hugo/Jekyll etc. The templates are relatively rigid by default though - page layouts are defined up front, and to add a page with a different layout you need to manually add some files to the repo. It seems like there's a way to work around this and add flexibility, but it needs a bit of custom React development. It seems like this might be worth the time investment for me though, since it's the closest thing I've found to what I need so far.
  • Suggestions for a CMS
    3 projects | /r/webdev | 19 May 2023
    If you've got the content in .md and .json files and you just need a way to add or modify that content, I would recommend you look into decap CMS (formerly netlify CMS)
  • Best CMS/SSG for small business website?
    3 projects | /r/web_design | 6 May 2023

What are some alternatives?

When comparing temporal_tables and decap-cms you can also consider the following projects:

temporal_tables - Temporal Tables PostgreSQL Extension

Strapi - 🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable and developer-first.

pgkit - Pgkit - Backup, PITR and recovery management made easy

tinacms - A fully open-source headless CMS that supports Markdown and Visual Editing

walex - Postgres change events (CDC) in Elixir

eleventy 🕚⚡️ - A simpler site generator. Transforms a directory of templates (of varying types) into HTML.

pg-event-proxy-example - Send NOTIFY and WAL events from PostgreSQL to upstream services (amqp / redis / mqtt)

sanity - Sanity Studio – Rapidly configure content workspaces powered by structured content

maxwell - Maxwell's daemon, a mysql-to-json kafka producer

firecms - Awesome Firebase/Firestore-based CMS. The missing admin panel for your Firebase project!

connectors - Connectors for capturing data from external data sources

Directus - The Modern Data Stack 🐰 — Directus is an instant REST+GraphQL API and intuitive no-code data collaboration app for any SQL database.