0.0.1 • Published 12 years ago

mu2express v0.0.1

Weekly downloads
6
License
-
Repository
github
Last release
12 years ago

mu2Express

mu2Express is a small node module with an express template engine function for the mu2 mustache render module.

Example:

var mu2Express = require("mu2Express");
var express = require("engine");
var app = express();
app.engine('mustache', mu2Express.engine);
app.set('view engine', 'mustache');
app.set('views', __dirname + '/Views');

app.get('/', function(req, res) {
	//Renders the Views/index.mustache file with the view {'test': 'somevalue'} using the mu2 engine
	res.render('index', {
		'locals' : {
			'test' : 'somevalue'
			}
		});
	});
app.listen(8080);