This repository has been moved to GitLab
a lightweight NodeJS based content management system and web development environment that aims for flexibility, performance, stability and ease of use.
WARNING: This is an experimental version. There might be serious security vulnerabilities and bugs. Reported issues and calaborators appreciated.
npm install mellisuga
You also need to install PostgreSQL
database.
var Mellisuga = require("mellisuga");
(async function() {
try {
let cms = await Mellisuga.init({
host: '127.0.0.1',
port: 8080,
db_user: 'postgres',
db_pwd: 'password',
app_path: __dirname
});
} catch (e) {
console.error(e.stack);
}
})();