enduro.js alternatives and similar libraries
Based on the "Node-Powered CMS Frameworks" category.
Alternatively, view enduro.js 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. -
Reaction Commerce
Mailchimp Open Commerce is an API-first, headless commerce platform built using Node.js, React, GraphQL. Deployed via Docker and Kubernetes. -
ApostropheCMS
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. -
PencilBlue
Business class content management for Node.js (plugins, server cluster management, data-driven pages) -
Factor
(Join Waiting List) Personal Marketing Platform. A powerful platform for your online identity.
InfluxDB - Purpose built for real-time analytics at any scale.
* 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 enduro.js or a related project?
README
enduro.js
Enduro is minimalistic, lean & mean, node.js cms. See more at enduro.js website
Other repositories: Enduro β’ samples β’ Enduro admin β’ endurojs.com site
Documentation
Complete, structured documentation is available here http://www.endurojs.com/docs
JS Transpilers
If you'd like to transpile your static js assets (under assets/js/
) you can do so. Simply, set a babel
object in your config file. This uses the same babel config specified here: https://babeljs.io/docs/usage/api/#options
{
"babel": {
"presets": ["es2015"]
}
}
Remember also to add whatever preset you'd like to use using npm:
npm install --save-dev babel-preset-es2015
CSS Pre-processors
Instead of using SASS, you can use the LESS pre-processor instead. To do this, set a less
object in your config file. This consists of a paths
array which is the same as one defined here: http://lesscss.org/#using-less
{
"less": {
"paths": []
}
}
Once that is set, simply add a .less
file in your assets/css
folder.
For STYLUS (http://stylus-lang.com/) support simple set stylus
to true in your config file:
{
"stylus": true
}
now all .styl
files in your assets/css
folder are used to generate the css.
Getting started
- Make sure you have node.js installed. Grab it here if you don't: nodejs installer.
- Run
npm install enduro -g
in your terminal. This will install enduro. - Run
enduro create myproject
. This will create new folder /myproject with the enduro project - Go in the newly created folder by running
cd myproject
. - Start enduro in development mode by running simply
enduro
. Browser window should open with the website running. - Done!
- Also, Admin interface is accessible at
localhost:5000
. Add admin user by runningenduro admin add username password
.
Developing enduro
I welcome you to develop enduro.js. Follow these guides to get you started quickly:
- clone enduro repository
- cd into enduro's directory
- run
npm link
- now you can develop enduro
Writing enduro tests
- enduro has mocha tests
- add your tests in the /test directory
- run all tests just by running
npm test
Developing enduro admin
- I decided to decouple admin interface from enduro to make things cleaner
- enduro admin is built using enduro ( duh ;-) )
- clone enduro_admin's git repo: https://github.com/Gottwik/Enduro_admin
- cd into enduro's directory
- run
npm link ../enduro_admin
or wherever you cloned the enduro_admin to - run enduro on enduro_admin by
enduro -nr -noadmin
- run
enduro
on your project - now you can edit enduro admin's source code and see the change on your project at localhost:5000/admin
*Note that all licence references and agreements mentioned in the enduro.js README section above
are relevant to that project's source code only.