0.0.3 • Published 10 years ago

browserify-jst v0.0.3

Weekly downloads
1
License
MIT
Repository
gitlab
Last release
10 years ago

#browserify-jst

A browserify transform for jst underscore templates! Yay!

###Installation:

npm install browserify-jst

###Usage:

Make a jst template like so:

<!DOCTYPE html>
<html>
<head>
  <title><%=title%></title>
</head>
<body>
<p>Hello there, <%=name%></p>
</body>
</html>

Now require() the handlebar template file in code like so:

var aTemplateFunction = require('./template.jst');

var html = aTemplateFunction({title: "An instantiated template!", name: "David"});

and run browserify with the transform option:

browserify -t browserify-jst entry-point.js

That's all!

Implementation details

This transform module packages the jst templates with the jst hich is smaller than the complete handlebars library. This is good, because it means smaller bundle files for you.

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago