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/TypeScript, fully customizable, and developer-first. -
Directus
The flexible backend for all your projects ๐ฐ Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more. -
WooCommerce
A customizable, open-source ecommerce platform built on WordPress. Build any commerce solution you can imagine. -
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. -
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. -
Grav
Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony -
OpenCart
A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution. -
Umbraco
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences. -
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 -
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. -
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. -
Recipes
Application for managing recipes, planning meals, building shopping lists and much much more! -
Attendize
Attendize is an open-source ticket selling and event management platform built on Laravel. -
Pimcore
Core Framework for the Open Source Data & Experience Management Platform (PIM, MDM, CDP, DAM, DXP/CMS & Digital Commerce) -
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. -
Apostrophe 2
A full-featured, open-source content management framework built with Node.js that empowers organizations by combining in-context editing and headless architecture in a full-stack JS environment. -
WriteFreely
A clean, Markdown-based publishing platform made for writers. Write together and build a community. -
Orchard
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform. -
Sharetribe
Sharetribe Go is Sharetribe's old source-available marketplace software, which was also available as a hosted SaaS product. Sharetribe Go is no longer actively maintained. -
Gazelle
Gazelle is a web framework geared towards private BitTorrent trackers. Although naturally focusing on music, it can be modified for most needs. -
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 -
Backdrop CMS
Backdrop is a full-featured content management system that allows non-technical users to manage a wide variety of content. It can be used to create all kinds of websites including blogs, image galleries, social networks, intranets, and more. -
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! -
eLabFTW
:notebook: eLabFTW is the most popular open source electronic lab notebook for research labs.
CodeRabbit: AI Code Reviews for Developers

* 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?
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". |