1.3.0 • Published 9 years ago
html2js-browserify v1.3.0
Turn crummy HTML into beautiful Javascript
npm install html2js-browserifyHow?
some.html
<html><body><h1>dude!</h1></body></html>app.js
var html = require('./some.html');
console.log(html);Then
# browserify -t html2js-browserify app.jsOptions
minifyif set to true, will minify the HTML. All other options are passed through to html-minifier.browserify -t [html2js-browserify --minify --collapseWhitespace] app.js