html-minify-stream

2.0.0 • Public • Published

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

Dependencies (2)

Dev Dependencies (5)

Package Sidebar

Install

npm i html-minify-stream

Weekly Downloads

12

Version

2.0.0

License

MIT

Unpacked Size

4.58 kB

Total Files

7

Last publish

Collaborators

  • goto-bus-stop