1.0.1 • Published 9 years ago

domlyify v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

domlyify

DOMly precompiler plugin for Browserify

Installation

npm install domlyify

Usage

This module is meant to be used together with browserify

Example example.js:

var template = require('./example-template.html');

template({title: 'example'});

Example example-template.html:

<h1>{{data.title}}</h1>

Compile Options

This plugin can give DOMly's compile options.

browserify -t [ domlyify --stripWhitespace true ] example.js

You can also configure it in package.json

{
    "name": "example-package",
    "browserify": {
        "transform": [
            [ "domlyify", {"stripWhitespace": true } ],
        ]
    }
}

#### Available option

...

### With gulp.js

...

### With grunt.js

...

## Tests

    npm test


## Roadmap

    - add tests
    - add examples

## Author

Ezekiel Chentnik