domlyify
v1.0.1
Published
browserify plugin for DOMly template files
Maintainers
Readme
domlyify
DOMly precompiler plugin for Browserify
Installation
npm install domlyifyUsage
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.jsYou 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
