0.6.9-patch1 • Published 9 years ago

html_min v0.6.9-patch1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

NPM version Build Status Dependency Status devDependency Status

HTMLMinifier is a highly configurable, well-tested, Javascript-based HTML minifier, with lint-like capabilities.

See corresponding blog post for all the gory details of how it works, description of each option, testing results and conclusions.

Test suite is available online.

Also see corresponding Ruby wrapper, and for Node.js, Grunt plugin, Gulp module, and Koa middleware wrapper.

How does HTMLMinifier compare to another solution — HTML Minifier from Will Peavy (1st result in google search for "html minifier") as well as htmlcompressor.com?

SiteOriginal size (KB)HTMLMinifier (KB)Will Peavy (KB)htmlcompressor.com (KB)
HTMLMinifier page48.837.343.341.9
ES6 table117.979.99291.9
MSN156.6133145138.3
Stackoverflow200.4159.5168.3163.3
Amazon245.9206.3225218.5
Wikipedia401.4380.6396.3n/a
Eloquent Javascript869.5830872n/a

Options Quick Reference

OptionDescriptionDefault
removeCommentsStrip HTML commentsfalse
removeCommentsFromCDATAStrip HTML comments from scripts and stylesfalse
removeCDATASectionsFromCDATARemove CDATA sections from script and style elementsfalse
collapseWhitespaceCollapse white space that contributes to text nodes in a document tree.false
conservativeCollapseAlways collapse to 1 space (never remove it entirely). Must be used in conjunction with collapseWhitespace=truefalse
preserveLineBreaksAlways collapse to 1 line break (never remove it entirely) when whitespace between tags include a line break. Must be used in conjunction with collapseWhitespace=truefalse
collapseBooleanAttributesOmit attribute values from boolean attributesfalse
removeAttributeQuotesRemove quotes around attributes when possible.false
removeRedundantAttributesRemove attributes when value matches default.false
useShortDoctypeReplaces the doctype with the short (HTML5) doctypefalse
removeEmptyAttributesRemove all attributes with whitespace-only valuesfalse
removeScriptTypeAttributesRemove type="text/javascript" from script tags. Other type attribute values are left intact.false
removeStyleLinkTypeAttributesRemove type="text/css" from style and link tags. Other type attribute values are left intact.false
removeOptionalTagsRemove unrequired tagsfalse
removeIgnoredRemove all tags starting and ending with <%, %>, <?, ?>false
removeEmptyElementsRemove all elements with empty contentsfalse
lintToggle lintingfalse
keepClosingSlashKeep the trailing slash on singleton elementsfalse
caseSensitiveTreat attributes in case sensitive manner (useful for custom html tags.)false
minifyJSMinify Javascript in script elements and on* attributes (uses UglifyJS)false (could be true, false, Object (options))
minifyCSSMinify CSS in style elements and style attributes (uses clean-css)false (could be true, false, Object (options))
minifyURLsMinify URLs in various attributes (uses relateurl)false (could be Object (options))
ignoreCustomCommentsArray of regex'es that allow to ignore certain comments, when matched[ ]
processScriptsArray of strings corresponding to types of script elements to process through minifier (e.g. text/ng-template, text/x-handlebars-template, etc.)[ ]
maxLineLengthSpecify a maximum line length. Compressed output will be split by newlines at valid HTML split-points.
customAttrAssignArrays of regex'es that allow to support custom attribute assign expressions (e.g. '<div flex?="{{mode != cover}}"></div>')[ ]
customAttrSurroundArrays of regex'es that allow to support custom attribute surround expressions (e.g. <input {{#if value}}checked="checked"{{/if}}>)[ ]
customAttrCollapseRegex that specifies custom attribute to strip newlines from (e.g. /ng\-class/)

Special cases

Ignoring chunks of markup.

If you have chunks of markup you would like preserved, you can wrap them <!-- htmlmin:ignore -->.

Preserving SVG tags

SVG tags are automatically recognized, and when they are minified, both case-sensitivity and closing-slashes are preserved, regardless of the minification settings used for the rest of the file.

Installation Instructions

From NPM for use as a command line app:

npm install html-minifier -g

From NPM for programmatic use:

npm install html-minifier

From Git:

git clone git://github.com/kangax/html-minifier.git
cd html-minifier
npm link .

Usage

For command line usage please see html-minifier --help

Node.js

var minify = require('html-minifier').minify;
var result = minify('<p title="blah" id="moo">foo</p>', {
  removeAttributeQuotes: true
});
result; // '<p title=blah id=moo>foo</p>'

Running benchmarks

Benchmarks for minified HTML:

node benchmark.js