$ gnpm install replaces
Replaces is a micro library that moves the data formatting instructions to the template placeholders using special modifier chars.
This module should work server-side and client side using the commonjs module system. The module it self is released in the public npm registry and can be installed by running:
npm install --save replaces
The module only exposes one single interface, which is a function that requires 3 arguments:
\W+
'use strict';
var replaces = require('replaces')
, template = require('fs').readFileSync(__dirname +'/template.html', 'utf-8');
console.log(replaces(template, /{fittings(\W+)([^}]+?)}/g, {
data: 'structure',
deeply: {
nested: {
data: 'structures'
}
}
}));
Where template.html
would be:
<div>{fittings:deeply.nested.data}</div>
<div>{fittings@deeply}</div>
Would produce the following output in the console.
<div></div>
<div>{"nested":{"data":"structures"}}</div>
The template tags can use various of modifiers.
<>
Make sure that the data we're trying to add to the template is save
to use inside of HTML tags.~
Transform the receiving data in to a JSON.stringify structure.@
Transform the receiving data in to a JSON.stringify structure
without crashing on circular references like a normal stringify operation
would.$
Transform the data using the circular JSON parser and ensure that
every value inside the JSON is encoded using the <>
modifier.%
Escape the data using the escape
function.\W
is just ignored and will indicated that the data should
just be pasted in as normal.New modifier can easily be added by adding new properties to the
replaces.modifiers
object. The key
of the object should the be modifier it's
triggered by and the value should be a function that transforms the data. The
transformer function receives 2 arguments:
The function should always return a string.
MIT
Copyright 2013 - present © cnpmjs.org | Home |