0.0.2 • Published 9 years ago

prejadeify v0.0.2

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

A Browserify Transform for Compile-time Jade

Prejadeify lets you use Jade templates with Browserify without the Jade runtime.

Features

  • No Jade runtime
  • Returns plain html
  • Prefix urls with CDN or other path (must use staticUrl() in code)

Install

npm install prejadeify

Usage

var template = require('./template.jade');
document.getElementById('something').innerHTML = template;

Setup

For Browserify bundle:

bundler.transform(prejadeify);

With url prefix option:

bundler.transform(prejadeify, {prefix: config.cdnUrl});

With other Jade locals (staticUrl can be overwritten here):

bundler.transform(prejadeify, {prefix: config.cdnUrl, ...jadeLocals});

For command line Browserify (untested):

browserify -t prejadeify app.js -o bundle.js