Go to file
Dmitriy Kubyshkin d2767c4bdd Updated README.
2014-12-15 15:52:26 +01:00
.npmignore Initial commit. 2014-12-15 15:48:11 +01:00
index.js Initial commit. 2014-12-15 15:48:11 +01:00
LICENSE Initial commit. 2014-12-15 15:48:11 +01:00
package.json Initial commit. 2014-12-15 15:48:11 +01:00
README.md Updated README. 2014-12-15 15:52:26 +01:00

Underscore template for webpack

Underscore template loader for webpack. Uses underscore template function to compile templates.

Installation

npm install tpl-loader

Usage

Documentation: Using loaders

var template = require("tpl!./file.ejs");
// => returns the template function compiled with undesrcore (lodash) templating engine.

// And then use it somewhere in your code
template(data) // Pass object with data

License

MIT (http://www.opensource.org/licenses/mit-license.php)