2.1.0 • Published 12 years ago

simple-jadeify v2.1.0

Weekly downloads
3
License
WTFPL
Repository
github
Last release
12 years ago

A Simple Browserify Transform for Jade

Simple Jadeify lets you use Jade templates with browserify in the simplest way possible:

var template = require("./template.jade");

document.getElementById("my-thing").innerHTML = template({
    localVar: "value",
    anotherOne: "another value"
});

Setup

Dead simple. When creating your browserify bundle, just add this line:

bundle.transform(require("simple-jadeify"));

or if you are a command line cowboy, something along the lines of

browserify -t simple-jadeify entry.js -o bundle.js

Note that this project peer-depends on Jade and each template will do require("jade/runtime"), so everything will just work: there's no need to add any Jade-related stuff to your bundle manually.

So yeah, now requireing any .jade files will give you back a template function. Have fun!

2.1.0

12 years ago

2.0.1

12 years ago

2.0.0

12 years ago

1.1.0

12 years ago

1.0.0

13 years ago