2.0.0 • Published 4 years ago
html-minify-stream v2.0.0
html-minify-stream
minify html in a stream using html-minifier.
Install
npm install html-minify-stream
Usage
var htmlMinifyStream = require('html-minify-stream')
fs.createReadStream('index.html')
.pipe(htmlMinifyStream({
collapseWhitespace: true,
removeOptionalTags: true
}))
.pipe(fs.createWriteStream('dist/index.html'))
API
htmlMinifyStream(?options)
Create a new minify stream. Write an html document to it. options
is an
options object for html-minifier.