decap-cms VS firecms

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

firecms

Awesome Firebase/Firestore-based CMS. The missing admin panel for your Firebase project! (by firecmsco)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
decap-cms firecms
80 26
17,454 1,067
0.8% 2.1%
9.2 9.8
7 days ago 6 days ago
JavaScript TypeScript
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.

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.

    22 projects | news.ycombinator.com | 22 Feb 2024
    Good to see further development in this space. Would be interesting to see how it compares to Decap CMS https://decapcms.org/ and Static CMS https://www.staticcms.org/

    Me personally I'd like to see something that supports easily creating and using different types of objects besides pages (such as: events, books, recipes, etc.), like content types and fields and views in wordpress or drupal. I think Hugo might support that in YAML or something.

    22 projects | news.ycombinator.com | 22 Feb 2024
    In a nutshell:

    1. You log in with your GitHub account.

    2. You select the GitHub repo where your site/app is at (whether it's Next.js, 11ty, Hugo, Nuxt... as long as you're using flat files for content).

    3. You add a single config file to your repo to define the content types and other settings (e.g. media folder).

    4. Congrats: you now have a user friendly CMS to manage content + media BUT all changes are still tracked like regular commits (under your account) on GitHub.

    I started using Jekyll around 2009 and over the course of the past 10+ years, I've helped build major sites and tiny blogs with Hugo, Gatsby, Next.js and more recently 11ty.

    I still love it.

    BUT once you're done building, managing content and media can be a bit of a pain. You have a few options:

    - Edit files directly (on GitHub or your local). Good luck getting your colleagues on the marketing team to do that.

    - Hook up a headless CMS like Contentful, Sanity, or Strapi. That works, but it's one more dependency and (IMHO) overkill in most cases.

    - OR you could use something like [Decap CMS](https://decapcms.org/). Really cool project, but I've never been a fan of the UI/UX, and it's been a bit of a pain to setup (maybe that's just me).

    I wanted something as simple as possible, preferably with nothing to install or deploy.

    Back in 2018, I had built a prototype (Jekyll+) [1] with the idea of getting a CMS set up by just adding a single configuration file to your GitHub repository.

    Pages CMS [2] is a continuation of that idea. It's 100% free and Open Source: https://github.com/pages-cms/pages-cms.

    If you don't want to use the online version because you're not comfortable signing up with your GitHub account, consider the following options:

    - Use a fine-grained personal access token [3], there's an option on the login screen. There is still a bug if you try to access a repo that isn't part of your token scope, but I'll get it fixed in the next couple of days.

    - Deploy it yourself (for free) on Cloudflare Pages. Literally 5 minutes of work max. I made a video walking you through the process [4].

    - Check out the intro video on the front page [2] (a bit crap, but I'll get a better one up in the next few days).

    I use it actively with a few other teams, I hope it will be of use to some of you.

    I'm already working on adding a few nicer features, like collaborative editing and email invites (to let non-developers login without a GitHub account).

    PS: I've spent the past 8+ years building a business and only recently got back into coding. I'd love pointers as to what I could do better (and how I can manage my Powerpoint PTSD).

    [1]: https://github.com/hunvreus/jekyllplus/

    [2]: https://pagescms.org

    [3]: https://docs.github.com/en/authentication/keeping-your-accou...

    [4]: https://pagescms.org/docs/development/

  • 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.

  • 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)

firecms

Posts with mentions or reviews of firecms. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-23.

What are some alternatives?

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

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

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

strapi-connector-firestore - Strapi database connector for Firestore database on Google Cloud Platform.

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

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

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

Gridsome - ⚡️ The Jamstack framework for Vue.js

lottie-web - Render After Effects animations natively on Web, Android and iOS, and React Native. http://airbnb.io/lottie/

gutenberg - A fast static site generator in a single binary with everything built-in. https://www.getzola.org