Git Product home page Git Product logo

manila's Introduction

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>
<: } :>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.