Objective

Create a simple and very light MVC framework for Node.js. Initially made for my Raspberry PI.

Usage

Look at exemple. Create a main file with:

var bonobo = require('bonobo-mvc');
var server = new bonobo.Server;
server.listen({
page404: './errors/404.html',
defaultRoute: '/tete/home'
});

Next, create directories “controllers” and “views”.

Developing

The repository is here

Have fun!