Comments by "Ozzy Perez" (@OzzyTheGiant) on "I built a JavaScript framework" video.
-
2
-
2
-
1
-
I've tried a few of them. Directus shines when you have an existing database with a custom schema that you don't want the CMS to alter, but you can always start from scratch too. The admin panel can be extended with custom plugins/pages made with Vue components. Strapi works primarily with data models but has an opinionated way of creating the database tables; I would say it's the best one for people who want to replace Wordpress. It also has a plugin system, but this one is based on React. Both Directus and Strapi support Markdown editors. Then there's Wagtail if you prefer a Python backend. That one is decent and can be customized with Django configurations, but the admin interface can be confusing on your first try; took me a while to figure out how to actually set up the API routes for my SSG, which are not available out of the box. Finally, if you must use PHP, there's SilverStripe, which is neat because it actually can be coded like a normal OOP back end framework, or you can just use the admin panel instead. Strapi also has the ability for you to code your data models instead of using the admin panel. SilverStripe, Strapi, and Directus also allow you to define custom API controllers like you would use in a normal web framework.
1
-
1