hamlify

0.0.3 • Public • Published

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/

Readme

Keywords

none

Package Sidebar

Install

npm i hamlify

Weekly Downloads

2

Version

0.0.3

License

MIT

Last publish

Collaborators

  • ptaylor