
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Template engine based on Lo-Dash template, but adds features like the ability to register helpers and more easily set data to be used as context in templates.
Template engine based on Lo-Dash template, but adds features like the ability to register helpers and more easily set data to be used as context in templates.
Install with npm:
$ npm install --save engine
var Engine = require('engine');
var engine = new Engine();
engine.helper('upper', function(str) {
return str.toUpperCase();
});
engine.render('<%= upper(name) %>', {name: 'Brian'});
//=> 'BRIAN'
Create an instance of Engine with the given options.
Params
options {Object}Example
var Engine = require('engine');
var engine = new Engine();
// or
var engine = require('engine')();
Register a template helper.
Params
prop {String}fn {Function}returns {Object}: Instance of Engine for chainingExample
engine.helper('upper', function(str) {
return str.toUpperCase();
});
engine.render('<%= upper(user) %>', {user: 'doowb'});
//=> 'DOOWB'
Register an object of template helpers.
Params
helpers {Object|Array}: Object or array of helper objects.returns {Object}: Instance of Engine for chainingExample
engine.helpers({
upper: function(str) {
return str.toUpperCase();
},
lower: function(str) {
return str.toLowerCase();
}
});
// Or, just require in `template-helpers`
engine.helpers(require('template-helpers')._);
Add data to be passed to templates as context.
Params
key {String|Object}: Property key, or an objectvalue {any}: If key is a string, this can be any typeof valuereturns {Object}: Engine instance, for chainingExample
engine.data({first: 'Brian'});
engine.render('<%= last %>, <%= first %>', {last: 'Woodward'});
//=> 'Woodward, Brian'
Creates a compiled template function that can interpolate data properties in "interpolate" delimiters, HTML-escape interpolated data properties in "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data properties may be accessed as free variables in the template. If a setting object is provided it takes precedence over engine.settings values.
Params
str {string}: The template string.opts {Object}: The options object.escape {RegExp}: The HTML "escape" delimiter.evaluate {RegExp}: The "evaluate" delimiter.imports {Object}: An object to import into the template as free variables.interpolate {RegExp}: The "interpolate" delimiter.sourceURL {string}: The sourceURL of the template's compiled source.variable {string}: The data object variable name.returns {Function}: Returns the compiled template function.Example
var fn = engine.compile('Hello, <%= user %>!');
//=> [function]
fn({user: 'doowb'});
//=> 'Hello, doowb!'
fn({user: 'halle'});
//=> 'Hello, halle!'
Renders templates with the given data and returns a string.
Params
str {String}data {Object}returns {String}Example
engine.render('<%= user %>', {user: 'doowb'});
//=> 'doowb'
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)
To generate the readme and API documentation with verb:
$ npm install -g verb verb-generate-readme && verb
Install dev dependencies:
$ npm install -d && npm test
Jon Schlinkert
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb, v0.9.0, on July 19, 2016.
FAQs
Template engine based on Lo-Dash template, but adds features like the ability to register helpers and more easily set data to be used as context in templates.
The npm package engine receives a total of 30,881 weekly downloads. As such, engine popularity was classified as popular.
We found that engine demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.