nick
The smallest templating engine ever.
Last updated 11 years ago by synchronous .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install nick 
SYNC missed versions from official npm registry.

nick

The smallest templating engine ever.

nick is a no-nonsense string templating engine written in 10 lines (plus 8 lines of optimization).

A browser build is available here. It is available globally as Nick.

Installation

$ npm i nick

Usage

API

nick(templateString, [delimiterRegex])

Basic

Anything inside a pair of delimiters will be a simple object access.

var nick = require('nick');

// Create a reusable template function
var resume = nick('My name is { name }, and I am a { job } working at { company }. I have { years } years of experience in the field of { field }.');

var me = resume({
	name: 'Haskell Curry',
	job: 'logician',
	company: 'λ Combinator',
	years: 100,
	field: 'combinatory logic'
});

// My name is Haskell Curry, and I am a logician working at λ Combinator. I have 100 years of experience in the field of combinatory logic.

Custom Delimiters

nick also takes a regular expression as an optional second argument, which defines what delimiter is used for the template.

var thing = nick('I like to do {{{{{adjective}}}}} things.', /[\{\}]{5}/);

var result = thing({ adjective: 'random' });

// I like to do random things.

Benchmarks

The benchmarks were written with templates in the recommended style of their respective engines, profiling the performance of the example provided in Basic.

nick x 13,253,638 ops/sec ±0.88% (96 runs sampled)
lodash x 510,826 ops/sec ±0.23% (101 runs sampled)
doT x 12,309,561 ops/sec ±0.82% (98 runs sampled)
Handlebars x 2,196,357 ops/sec ±0.44% (99 runs sampled)

https://dl.bucket.pw/fyiyux.png

Current Tags

  • 0.1.3                                ...           latest (11 years ago)

12 Versions

  • 0.1.3                                ...           11 years ago
  • 0.1.2                                ...           11 years ago
  • 0.1.0                                ...           11 years ago
  • 0.0.9                                ...           11 years ago
  • 0.0.8                                ...           11 years ago
  • 0.0.7                                ...           11 years ago
  • 0.0.6                                ...           11 years ago
  • 0.0.5                                ...           11 years ago
  • 0.0.4                                ...           11 years ago
  • 0.0.3                                ...           11 years ago
  • 0.0.2                                ...           11 years ago
  • 0.0.1                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 11
Last Day 0
Last Week 12
Last Month 1
Dependencies (1)
Dev Dependencies (4)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |