DEV Community

Cover image for 🍂Open-source Headless CMS Review: Strapi, Directus, and Payload
Hung Vu
Hung Vu

Posted on • Originally published at hungvu.tech

🍂Open-source Headless CMS Review: Strapi, Directus, and Payload

After looking at a dozen headless content management systems (headless CMSs) for my upcoming blogfolio, I narrowed the choices to only Strapi v4, Directus v9, and Payload v1. This article presents a comparison between the three headless CMSs to figure out the most suitable solution. If you wonder why I chose these headless CMSs in the first place, my previous article How to choose headless CMS for portfolio and blogs? is a walkthrough of my initial research.

Strapi, Directus, and Payload, which is the best headless CMS? To make the final decision, let's analyze the following aspects of these solutions.

  1. Customizability
  2. Security
  3. Developer experience

Customizability

Do remember, that all three CMSs are open source under a permissive license so you can modify the codebase on your own. Therefore, customizability is technically endless. In the case of Payload, it is a configuration-as-code CMS, so its admin UI is practically blank out-of-the-box. With these in mind, let's try to compare what the CMS officially supports.

Available plugins

  • Winner: Strapi

One strong point of Strapi is its mature marketplace. It is accessible either via an admin interface or a website at market.strapi.io. If you need an additional feature, there is a high chance it is already available as a plugin. That said, there is no one-click-install feature, installation is via npm only.

Strapi marketplace is mature.

  • Draw: Directus and Payload

Even though both Directus and Payload support plugins/extensions in their modular architecture, none has a marketplace. Regarding Directus, there is an extension marketplace, but it is still under development. You can check it out at directus.market.

Directus market is under development.

Meanwhile, the Payload marketplace will probably not be available anytime soon, but it is on the roadmap.

We will be maintaining a list of both official and community Payload plugins on our website very soon.

Database

  • Winner: Directus

Directus supports several different flavors of SQL: PostgreSQL, MySQL, SQLite, OracleDB, CockroachDB, MariaDB, and MS-SQL. You can either use Directus as a wrapper on top of your existing database or use Directus to build a new database from the ground up. In a sense, Directus is an abstraction for your database (like an ORM, but with UI), and headless CMS is only one of its use cases. This database introspection nature gives you extreme flexibility when migrating with Directus, either in or out.

Directus with PostgreSQL database.

  • Second place: Strapi

Currently, Strapi v4 supports SQLite, PostgreSQL, MySQL, and MariaDB. However, it is fairly cumbersome to perform migrations between databases, and environments. From my research, it boils down to different approaches between Strapi and Directus. Strapi follows a "closed" source control approach (opinionated database generation, developers have no control), while Directus is a database-first platform. If you have any experience in solving Strapi migration problems, please let me know in the comment section down below. It would be great to have a technical explanation of why migration and backup have always been a downside of Strapi.

  • Questionable: Payload

Payload only supports MongoDB at the moment. Depending on your use case, this might be a plus or vice versa. As Payload is a new player in the market, there are not sufficient documents and case studies so I can not form a conclusion on its database aspect. Payload v1 (production-ready) was just launched on July 19th, 2022.

Security

Security is a highly specialized topic so I do not make a technical comparison on which solution is more secure. Instead, let's take a look at what security features they offer.

Authorization (access control)

  • Draw: Directus and Payload

Both Directus and Payload offer very respectable security control, at least one level above Strapi in my opinion. They have unlimited granular role-based access control, down to database field level. Permissions are configurable for both APIs and admin panel feature access.

Directus permissions control is granular.

However, I think Payload is a bit better in this aspect as it also allows a wider range of configurations. If in Directus, you can use role-based access control to restrict permission of a user, then in Payload, you can even set permission from the perspective of an object. For example:

In Directus, if you have an editor role, you can read an article with draft status (field condition): if user.role == editor => read draft article

In Payload, every draft article (field condition) is only readable by users with editor role: if article.status == draft => allow editor role to read. This is the same permission as in the Directus example, just from a different perspective.

  • Second place: Strapi

Unlike the other two solutions, Strapi only has API-level access control, so it is less granular. That is one thing, but Strapi also locks admin panel role addition and modification behind a paywall. With such an essential feature of a CMS being restricted like this, it is a huge downside in my opinion.

Strapi requires an Enterprise plan for role addition

Authentication

  • Winer: Payload

Payload supports two-factor authentication, and a wide variety of strategies like OAuth 2, and LDAP, for both admin panel and front-end application. This is possible because Payload uses passport.js underneath, a very popular authentication library that supports more than 500 strategies. Do keep in mind that this was only introduced in the release of Payload v1, and there has not been much documentation around the feature, so this is a downside if you are going to build a large-scale project.

  • Draw: Directus and Strapi

On the admin panel authentication side, Directus is relatively on par with Payload, but apparently, there is no clear way to implement public user registration. Meanwhile, Strapi does not support two-factor authentication or any other admin panel authentication strategies out-of-the-box. Strapi's single sign-on is a paid feature that is available only on the Gold plan. However, Strapi offers front-end authentication with many different identity providers. For example, if a user wants to register for an account on your ecommerce store, then the authentication flow is as below.

  1. User signs in with Google (or other identity providers) on the single-page application.
  2. Goole verifies the identity and returns an access token to the single-page application.
  3. The single-page application makes a request to Strapi API with Google access token as payload.
  4. Strapi creates an end-user account based on provided information (assuming you have configured the identity provider in Strapi beforehand).
  5. You have just finished registering a new end-user account using Google sign-in.

That said, Directus and Strapi have been battle tested for much longer than Payload. It is reasonable if you put Directus and Strapi ahead of Payload just by this fact alone. Security has always been a critical aspect of software development after all, but I will put my trust in Payload this time.

Developer experience

Unlike customizability and security, it is hard to give an objective review of developer experience. Experience is mostly subjective after all. With that in mind, there is no clear winner in this regard, and the comparison below is purely my subjective observation when testing the three CMSs.

Admin UI

Out of the three, Directus is the most feature-packed out-of-the-box. If you are a no-code person, then Directus is certainly a great Vue-based option here. It even has a dedicated page for the user guide in the admin panel. That said, Strapi is still a good one if you are into a React ecosystem.

Directus admin panel user guide

In between the two, I much prefer Directus admin UI. It seems like Strapi is trying to be aesthetically pleasing to non-technical users but comes at the cost of having too much empty space and a lack of features, and I am not impressed by this.

Payload, on the other hand, is sort of an outlier here. The whole nature of this CMS is to be code-first, so in a sense, it is not very beginner-friendly. The payload admin panel is mostly for entering content (e.g., blog article content), meanwhile, other settings such as permissions, webhooks, field definition, and so on are defined in the codebase. I suppose you either like this approach or don't, and there is no in-between.

Documentation

There is not much to discuss this. Strapi is currently in the 4th version, while Directus is in the 9th version. While some argue they both have worse documentation compared to their previous versions, both are still mature projects, so they have a large number of community resources. Meanwhile, Payload just had its first launch a few days ago, so there is a clear lack of resources and documentation compared to the other two solutions.

Maintainability (upgrade, migration, backup, deployment)

This is briefly discussed in the Customizability/Database section. From my research, the general consensus is that Strapi has very poor maintainability support. Why is it the case? I am not certain. It is great if you can help me answer this in the comment section down below. In contrast, it seems to be a breeze to maintain Directus as it is only a wrapper on top of an SQL database. You can either perform database-level operations or use features of Directus SDK to help the maintainability process.

Still, both Strapi and Directus are no-code solutions, and configuring everything via UI might potentially create consistency issues down the road. In the case of Payload, it has configurations as code so everything can be granularly controlled in a CI/CD pipeline. With most settings and schemas effectively being defined in the codebase, it also reduces the troubles in dealing with low-level operations in the database.

Hosting

By default, both Strapi and Directus require a separate Node.js instance so you cannot host them on the same server as your application. Strapi and Directus are fully built applications on their own. However, I suppose it should be possible via a more advanced server configuration using reverse proxy. Between the two, Strapi should be easier to deploy, be it a simple VM, a docker instance, or others. This is because many hosting providers provide a one-click setup option for Strapi due to its popularity.

Payload is different, it is more of a plugin to your existing application. In short, your Node.js now contains both the front-end and Payload as the back end. That said, if you want complete separation of concerns, I suppose it is still possible to host them separately.

Conclusion

Strapi, Directus, and Payload, which suits the purpose of building my blogfolio? After considering the three solutions in terms of customizability, security, and developer experience, Directus is logically a winner in my opinion. However, I decide to give Payload a chance this time. In general, Payload is on par with Directus in terms of functionality, but its code-first approach makes me want to give it a shot. As a newcomer on the market and just recently reached a stable release, Payload can potentially be a risky choice, but that is something I am willing to take.

This article is a way to document my research of the current headless CMS market. As a newcomer, there is still much more to learn so I intentionally skip technical comparisons such as performance, scalability, edge cases, and so on. If you are looking for a solution for a large-scale project, hopefully, this article gives you a good starting point.


This article was originally published at Strapi vs Directus vs Payload, Headless CMS Comparison.

Interested in software development and more? My other articles might be helpful to you!

Find more developer news at The Dev Report, and technology articles at my blog.

Also, let's connect!

Oldest comments (10)

Collapse
 
jmikrut profile image
James Mikrut

This is an amazing write-up!

I'm a co-founder of Payload and I'm super pumped that you're giving us a shot. What you've said is accurate - it can be risky to give the new product a run, but I am confident that you'll love our developer experience.

We're around and willing to help as you implement. Seriously - any questions, jump in Discord or GitHub Discussions and we'll get you answers!

Collapse
 
christiankozalla profile image
Christian Kozalla

Wow, nice write-up indeed!

I got hooked, too, because you choose to include Payload 😀 I happened to try Payload a few weeks back, and I gotta say: I loved it!

I integrated it into a traditional Express SSR application (with a template engine), and after setting up a Mongo DB instance locally, it really was just "plug n play"

I can only encourage everyone to give PayloadCMS a shot!

Collapse
 
hunghvu profile image
Hung Vu

I actually came across this hidden gem when searching through some Reddit discussion. Payload looks very promising to me, and surely there will be more follow-up articles down the road as I learn more about Payload technical aspects! 😊

By the way, the introduction series on YouTube is great. Considering there are not many demonstrations of Payload usage out there, the videos did help me a bunch in making final decision. Please keep it up! @jmikrut

Collapse
 
billraymond profile image
Bill Raymond

Thank you for the great writeup! Can I ask how you will ultimately host the service? Would it be locally on your computer or on a cloud-based service? I am using Forestry.io at the moment and I like it, but have been looking at Strapi. I had not realized the other options here, so thank you again for the hard work!

Collapse
 
hunghvu profile image
Hung Vu

I'm glad that this article is useful to you Bill. As of now, I've not planned a deployment / hosting strategy. Probably I will use Google Cloud, but it might take me a few months before diving to the topic and make a final decision.

Certainly, there are simpler options out there to host the product, but I want to learn more about cloud, so a first-tier provider is preferrable.

Collapse
 
ivan_jrmc profile image
Ivan Jeremic

Strapi still feels like an unfinished beta product.

Collapse
 
hunghvu profile image
Hung Vu

I have seen other people with the same opinions as you, especially with Strapi v4. May I ask why that is the case?

Collapse
 
tealover418 profile image
Stijn de Ligt

For me it's the minimal auth, lacking support of typescript, and bad quality of the source code. It's still a great product, but only for minimal budget / startups.

Collapse
 
ivan_jrmc profile image
Ivan Jeremic

I also think bad source code which I don't trust, unfinished poor designed plugin system, unfinished poor designed marketplace, not a clear Strategie this is how it feels, it maybe sounds crazy but I would rather host a wordpress + acf to be my backend before I go with strapi, wordpress + acf + woocommerce with rest api allows you to build a backend and instantly sell SaaS products.

Collapse
 
tealover418 profile image
Stijn de Ligt

Biggest issue for me with directus is that it's database first. You have no models / code for your application. This means having multiple instances of your CMS (like a staging environment) is pretty annoying since you'll be migrating all the time.

I'd never heard of Payload until this article. Will definitely look into it further since I prefer MongoDB and the other two don't support it.