cmbird
v0.1.25
Published
Node.js based, highly configurable content management system
Readme
cmbird
Content Management Bird
A lightweight NodeJS based content management system that aims for flexibility, performance, stability and ease of use.
Installation
npm install cmbird
Though you also need to install PostgreSQL database.
Basic usage
var CMS = require("cmbird");
var cms = new CMS({
host : '127.0.0.1',
port : 9639,
db_user : 'postgres', // or any other database user with super permissions
db_pwd: 'password',
app_path : __dirname
});