Skip to content

Strix-CZ/mu2Express

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

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("express");
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);

About

Express render function for the mu2 mustache library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%