steal-template
v1.0.1
Published
Use lodash.template to create template functions
Downloads
6
Readme
steal-template
steal-template is a StealJS plugin for creating template functions. steal-template uses lodash template behind the scenes.
Install
npm install steal-template --save
Usage
Here's a simple hello world example:
hello.txt
Hello <%= name %>!
main.js
var hello = require("hello.txt!steal-template");
hello({ name: "world" }); // -> "Hello world!"
License
MIT