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:
- The template string that contains the tags that should be replaced.
- A Regular Expression that has 2 capturing groups:
- First group should capture the data modifier which can be
\W+
- The second group is the name of the key that should be used to extract the data from the supplied data argument.
- The data object which contains all the information.
'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 theescape
function.- Any other non
\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 key that was used to retrieve the data
- Data the key will be replaced with.
The function should always return a string.
MIT