2.0.0 • Published 4 years ago

html-minify-stream v2.0.0

Weekly downloads
12
License
MIT
Repository
github
Last release
4 years ago

html-minify-stream

minify html in a stream using html-minifier.

npm travis standard

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.

License

MIT