0.1.1 • Published 7 years ago

coffee-hamlify v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Build Status

hamlify

Haml-coffee precompiler plugin for Browserify v2 without magic.

Compiles Haml templates to plain Javascript.

Usage

Install hamlify locally to your project:

npm install hamlify

Then use it as Browserify transform module with -t:

browserify -t hamlify main.js > bundle.js

where main.js can be like:

var template = require("./template.haml");
document.body.innerHTML = template({ name: "Epeli" });

and template.haml:

%h1= @name!

Checkout the example folder for details.

Browserify?

https://github.com/substack/node-browserify

Further reading: http://esa-matti.suuronen.org/blog/2013/03/22/journey-from-requirejs-to-browserify/