Qualphey / Mellisuga

lightweight NodeJS based content management system and web development environment that aims for flexibility, performance, stability and ease of use

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repository has been moved to GitLab

Mellisuga

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.

Installation

npm install mellisuga

You also need to install PostgreSQL database.

Basic usage

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);
  }
})();

About

lightweight NodeJS based content management system and web development environment that aims for flexibility, performance, stability and ease of use

License:MIT License


Languages

Language:JavaScript 98.4%Language:CSS 1.0%Language:HTML 0.6%