New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

manila

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

manila

A simple template engine for Node

  • 2.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12
Maintainers
1
Weekly downloads
 
Created
Source

Manila

Manila is a no-frills template engine for Node 4+.

Installation

npm install manila

Use with Express

// index.js
const app = require('express')(),
	manila = require('manila')();

app.get('/', (req, res) => {
	res.render('index', {
		message: 'Hello, world!'
	});
});

// Pass Manila to Express
app.engine('mnla', manila);
// Register Manila as a view engine
app.set('view engine', 'mnla');
// Set the views directory
app.set('views', './views');

app.listen(3000);
<!-- views/index.mnla -->
<h1><:message:></h1>

Run node index and open http://localhost:3000 in your browser to see the rendered result.

Use with vanilla Node

// index.js
const http = require('http'),
	manila = require('manila')();

http.createServer((req, res) => {

	manila('index.mnla', { message: 'Hello, world!' }, function(err, html) {
		res.writeHead(200, 'text/html; charset=UTF-8');
		res.end(html);
	});

}).listen(3000);
<!-- views/index.mnla -->
<h1><:message:></h1>

Promise Support

When calling manila, you can either provide a callback or use a promise. The following is effectively the same as the example above:

// index.js
const http = require('http'),
	manila = require('manila')();

http.createServer((req, res) => {

	manila('index.mnla', { message: 'Hello, world!' })
		.then(html => {
			res.writeHead(200, 'text/html; charset=UTF-8');
			res.end(html);
		}).catch(err => {
        	console.trace(err);
        });

}).listen(3000);

Configuration

The Manila module accepts a configuration object with the following optional properties:

root: the absolute path to the root of your app. Defaults to the directory which contains the application entry point.

views: the path to the directory in which to look for views, relative to the root. Defaults to 'views'.

partials: the directory in which to look for partial mnla files to use with <: include ... :> tags, realtive to the root. Defaults to views.

extension: the file extension of your views/partials. Defaults to '.mnla'.

// defaults:
const manila = require('manila')({
	root: path.dirname(require.main.filename),
	views: 'views',
	partials: 'views',
	extension: '.mnla'
});

Variables

<:expression:> This tag will be replaced with the HTML-escaped result of evaluating the expression or variable with the current context.

<::expression::> Use two colons instead of one to prevent HTML-escaping of the expression.

Includes

<: include path/to/file :> Includes the content of the named file as part of the current template. path/to/file is relative to views/ unless overwritten during configuration.

Blocks

Manila tags are executed as plain 'ol JavaScript, so there's no template language to learn. While you can use any JavaScript you want, here are some examples:

Conditionals
<: if (expression) { :>
	<p>This markup renders if expression is truthy</p>
<: } else { :>
	<p>This markup renders if expression is falsy</p>
<: } :>
Array Loops
<: list.forEach(item => { :>
	<li><:item:></li>
<: }) :>
Object Loops
<: for (key in obj) { :>
	<li> <:key:> is <:obj[key]:> </li>
<: } :>

Keywords

FAQs

Package last updated on 03 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc