CerusJS is a modular, and even more important, understandable NodeJS framework. It is built to be as lightweight as you want it to be. Pick what you want to use to maximize performance or just be free of bloat. On top of that, CerusJS is also created to be easy to learn and easy to master. All names are styled similarly to make everything intuitive to use. This module is used as "hub", containing all the basic modules you'll need to create a basic webserver.
CerusJS is available through NPM. Make sure you have NodeJS installed when installing and using CerusJS.
# Installs the latest version of CerusJS.
$ npm install cerus
Install the modules you want to shape CerusJS how you want it to be. A few example modules are:
To create a basic server you only have to use the following code.
var cerus = require("cerus")();
cerus.server().start();
The documentation for all official modules can be found here.
The author of CerusJS is JortvD.