Expressa alternatives and similar software solutions
Based on the "Content Management Systems (CMS)" category.
Alternatively, view Expressa alternatives based on common mentions on social networks and blogs.
-
Strapi
π Strapi is the leading open-source headless CMS. Itβs 100% JavaScript, fully customizable and developer-first. -
Directus
The Modern Data Stack π° β Directus is an instant REST+GraphQL API and intuitive no-code data collaboration app for any SQL database. -
Magento
Prior to making any Submission(s), you must sign an Adobe Contributor License Agreement, available here at: https://opensource.adobe.com/cla.html. All Submissions you make to Adobe Inc. and its affiliates, assigns and subsidiaries (collectively βAdobeβ) are subject to the terms of the Adobe Contributor License Agreement. -
Saleor
Saleor Core: the high performance, composable, headless commerce API. -
WooCommerce
A customizable, open-source ecommerce platform built on WordPress. Build any commerce solution you can imagine. -
Spree Commerce
A headless open source e-commerce platform for global brands -
OpenCart
A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution. -
Grav
Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony -
PrestaShop
PrestaShop is the universal open-source software platform to build your e-commerce solution. -
Reaction Commerce
Mailchimp Open Commerce is an API-first, headless commerce platform built using Node.js, React, GraphQL. Deployed via Docker and Kubernetes. -
django CMS
The easy-to-use and developer-friendly enterprise CMS powered by Django -
KeystoneJS
The most powerful headless CMS for Node.js β built with GraphQL and React -
Umbraco
The simple, flexible and friendly ASP.NET CMS used by more than 730.000 websites -
Drupal
Verbatim mirror of the git.drupal.org repository for Drupal core. Please see the https://github.com/drupal/drupal#contributing. PRs are not accepted on GitHub. -
Open Source POS
Open Source Point of Sale is a web based point of sale application written in PHP using CodeIgniter framework. It uses MySQL as the data back end and has a Bootstrap 3 based user interface. -
Solidus
π Solidus, the open-source eCommerce framework for industry trailblazers. -
Cockpit
Add content management functionality to any site - plug & play / headless / api-first CMS -
Refinery CMS
An extendable Ruby on Rails CMS that supports Rails 6.0+ -
Attendize
Attendize is an open-source ticket selling and event management platform built on Laravel. -
Bolt
Bolt is a simple CMS written in PHP. It is based on Silex and Symfony components, uses Twig and either SQLite, MySQL or PostgreSQL. -
Pimcore
Open Source Data & Experience Management Platform (PIM, MDM, CDP, DAM, DXP/CMS & Digital Commerce) -
Apostrophe 2
Apostrophe is a full-featured, open-source CMS built with Node.js that empowers organizations by combining in-context editing and headless architecture in a full-stack JS environment. -
Orchard
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform. -
Sharetribe
Sharetribe Go is a source available marketplace software, also available as a hosted, no-code SaaS product. For a headless, API-first marketplace solution, check out Sharetribe Flex: https://www.sharetribe.com/flex. -
Recipes
Application for managing recipes, planning meals, building shopping lists and much much more! -
WriteFreely
A clean, Markdown-based publishing platform made for writers. Write together and build a community. -
Mealie
Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and mealie will automatically import the relevant data or add a family recipe with the UI editor -
Shopware Community Edition
Shopware 5 Repository - For Shopware 6 visit https://github.com/shopware/platform -
Gazelle
Gazelle is a web framework geared towards private BitTorrent trackers. Although naturally focusing on music, it can be modified for most needs. -
Open Food Network
Connect suppliers, distributors and consumers to trade local produce. -
TYPO3
The TYPO3 Core - Enterprise Content Management System. Synchronized mirror of https://review.typo3.org/q/project:Packages/TYPO3.CMS -
PencilBlue
Business class content management for Node.js (plugins, server cluster management, data-driven pages) -
Camaleon CMS
Camaleon CMS is a dynamic and advanced content management system based on Ruby on Rails -
Concrete 5 CMS
Official repository for Concrete CMS development -
Osclass
With Osclass, get your own classifieds site for free. Build your own Osclass installation and start advertising real estate, jobs or whatever you want- in minutes! -
Thelia
Thelia is an open source tool for creating e-business websites and managing online content. Repo containing the new major version (v2) -
ProcessWire
ProcessWire 3.x is a friendly and powerful open source CMS with a strong API.
Static code analysis for 29 languages.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Expressa or a related project?
Popular Comparisons
README
data-driven extendable API middleware for Node.js/Express
Expressa makes it easy to create basic APIs by using JSON schema:
- django-like admin interface for creating collection-REST endpoints and managing permissions
- collection schema's can be edited and added through the admin interface
- re-use collection schema's in your frontend to generate forms
- easily extendable so you can add complex features as well
- define collections as JSON schema instead of custom code
- per-collection database storage: MongoDB, PostgreSQL, or JSON-files (useful for version control)
Best of all: it's just middleware, not a framework
- mix-and-mash: easily throw in other express middleware and endpoints
- decorate expressa-endpoints: add event listeners which stop/modify requests (responses)
Getting Started
It's very easy to install expressa in your project directory:
mkdir myapp
cd myapp
npm init
npm install expressa express
Create a file app.js
with the following code (or just copy the middle 3 lines into your existing express app)
var express = require('express');
var app = express();
var expressa = require('expressa');
app.use('/admin', expressa.admin({ apiurl: '/api/' }));
app.use('/api', expressa.api());
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
Now start the server by running node --use-strict app.js
and navigate your browser to http://localhost:3000/admin/
API endpoints
Once you add a collections in the admin interface, every collection will have the following endpoints:
method | endpoint | description |
---|---|---|
POST | /users/login | expects JSON in the message body. e.g. `{"email": "[email protected]", password: ""} |
GET | /:collection | get an array of all documents in a collection |
GET | /:collection/:id | get a specific document |
GET | /:collection/?query={..} | get an array of documents matching the mongo query |
GET | /:collection/?query={..}&limit=10&offset=10&orderby={"meta.created":1} | same as previous, but with targeted output control and sorting |
GET | /:collection/?query={..}&page=1&pageitems=10 | similar to previous, but with pagination support |
GET | /:collection/?query={..}&page=1&pageitems=10&pagemetadisable=1 | same as previous but slightly faster and with less pagination detail |
GET | /:collection/?query={..}&fields={..} | the fields param can be used to do a mongo projection to request only specific fields |
GET | /:collection/?fieldname=value | get an array of documents matching with the specified values. See node-mongo-querystring for details. |
GET | /:collection/schema | get the collection schema |
POST | /:collection/ | create a new document, the message body should be the JSON document |
PUT | /:collection/:id | replace the document with id. The message body should be the JSON document. If the _id in document is different (the old document _id is deleted and a new one with id is created.) |
POST | /:collection/:id/update | modify the document with id using a mongo update query. The message body should be the update query |
DELETE | /:collection/:id | delete the document |
Supported Data: Only standard JSON (strings, numbers, booleans, null) is supported. Dates can be stored as strings using ISO 8601
Documentation
- Requests
- [Querying](doc/querying.md)
- [Making authenticated requests](doc/authentication.md)
- [Pagination and sorting](doc/querying.md)
- Collections
- [Automatic fields](doc/automatic-fields.md)
- Server-side implementation
- [Modifying behavior using listeners](doc/listeners.md)
- [Adding custom endpoints](doc/custom-endpoints.md)
- [Accessing the database](doc/database.md)
- Admin Panel
- [Relationships](doc/relationships.md)
- [Permissions](doc/permissions.md)
- [Uploading files](doc/uploading-files.md)
- [Testing / CI integrating your expressa app](doc/testing.md)
Folder Structure
The Expressa configuration is in a folder called "data" in your project. There is a subfolder for the collections that you choose to persist to disk. By default, the following will be added once you finish the installation.
folder | purpose |
---|---|
data/settings | Config file per environment. Can include custom variables specific to your project. |
data/role | List of roles in the permission system. Defaults to "Admin", "Anonymous" and "Authenticated". |
data/collection | JSON Schemas and settings for each collection. |
Note: The files in these data folders are JSON so they can be manually updated or you can edit them in the Admin UI. Generally these files should be checked into version control.
Admin UI Examples/Screenshots
- [Example: Creating a blog collection and post in the UI](doc/blogexample.md)
- [Managing CRUD permissions in the UI](doc/permissions.md)
Expressa ecosystem
- expressa-folder easily extend expressa collections with ORM-ish js-code (get.js/post.js/functions.js/etc) & setup sub-endpoints
- expressa-swagger middleware to generate online api documentation
- expressa-client middleware to generate browser REST-client (+nodejs client)
- expressa-cli commandline interface for expressa
Roadmap
- Automatic GraphQL Support
- JWT token expiration
- Support cookie based authentication as well
- File uploads
Alternatives
Expressa is not primarily built for simple blog websites or mostly static content websites. For those a cms like Keystone.js and enduro.js could work or maybe you could build you site with a static site generator like Hugo. For database-driven websites that need a strong CRUD backend where you want a clear separation between the frontend and backend, expressa.js is a great choice.
Changelog
Version | Important Changes |
---|---|
0.5.3 | Fixes bug in install where enforce permissions wasn't activated. Fixes CSV download. |
0.5.2 | Fixes bug when installing super user in Admin tool |
0.5.1 | Includes built Admin UI in npm package |
0.5.0 | Migrates server to use async/await. New Admin UI built with Vue.js. Adds request-id headers |
0.4.6 | Fix some errors in the install process when choosing to store users in mongo or postgres |
0.4.5 | Security update |
0.4.1 | db.create (postgres) now returns the id instead of the full document. |
0.4.0 | Pagination now starts with page 1. Delete requests can no longer bypass rejections by listeners. Updated permission error codes/messages. Error responses now always json (with an "error" field explaining) PUT /collection/:id response changed to match POST /collection |
0.3.3 | Fixes security vulnerability with the "edit own" permission and the :collection/:id/update endpoint. Update immediately. |
0.3.2 | Pagination is now supported by specifying the "page" and "limit" |
0.3.1 | Makes "development" the default settings file instead of "production". Use NODE_ENV environmental variable to change this. To quickly migrate, just rename your settings file to "development". |