1.0.1 • Published 9 years ago

steal-template v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

steal-template

Build Status npm version

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