5.9 KiB
Hexo-yam
This project is based on hexo-neat
Yet Another Minifier for Hexo. Minify and compress html, js and css. xml, json and many more are also compressed. Support gzip and brotli compressions.
The original package has not been updated for a while. I update the dependencies and add compression support.
All the options are the same, so you can use this as a drop-in replacement.
Note: See HTTP Compression section below for more info on using brotli.
Installation
$ npm install hexo-yam --save
Usage
To enable this plugin, insert the following to _config.yml
:
neat_enable: true
For further customization, see below.
Options
neat_html:
enable: true
exclude:
- enable - Enable the plugin. Defaults to
true
. - logger - Verbose output. Defaults to
false
. - exclude - Exclude files. Support wildcard glob pattern.
- Support one-liner,
exclude: [*.min.html, *.note.html]
. - To exclude a file, double asterisk and the full path must be specified,
**/themes/typing/source/js/source.js
. *source.js
also works, but it also excludesresource.js
.- Test glob pattern on the web using Globtester.
- Support one-liner,
For more options, see HTMLMinifier.
neat_css:
enable: true
exclude:
- '*.min.css'
- enable - Enable the plugin. Defaults to
true
. - logger - Verbose output. Defaults to
false
. - exclude - Exclude files. Support wildcard pattern.
- level - Optimization level. Defaults to
2
.
For more options, see clean-css.
neat_js:
enable: true
exclude:
- '*.min.js'
- enable - Enable the plugin. Defaults to
true
. - logger - Verbose output. Defaults to
false
. - exclude - Exclude files. Support wildcard pattern.
- mangle - Mangle file names. Defaults to
true
. - output - Output options.
- compress - Compress options.
For more options, see Terser.
neat_gzip:
enable: true
include:
- '*.html'
- '*.css'
- '*.js'
- '*.txt'
- '*.ttf'
- '*.atom'
- '*.stl'
- '*.xml'
- '*.svg'
- '*.eot'
- '*.json'
- enable - Enable the plugin. Defaults to
true
. - logger - Verbose output. Defaults to
false
. - include - Include files. Support wildcard pattern.
- Support one-liner,
include: ['*.html','*.css','*.js']
. - Must include asterisk and single quotes.
.html
is invalid.'*.html'
is valid.
- Support one-liner,
neat_brotli:
enable: true
include:
- '*.html'
- '*.css'
- '*.js'
- '*.txt'
- '*.ttf'
- '*.atom'
- '*.stl'
- '*.xml'
- '*.svg'
- '*.eot'
- '*.json'
- enable - Enable the plugin. Defaults to
true
. - logger - Verbose output. Defaults to
false
. - include - Include files. Support wildcard pattern.
HTTP Compression
While most modern web browsers support Brotli, you also need to consider whether the web/app server, hosting platform, reverse proxy or CDN (whichever relevant to you) support it.
As of 2018, GitHub/GitLab Pages and Netlify do not support brotli. You can generate .br
files, but they won't be serving those files.
If you have access to the web server config, you should disable on-the-fly compression for static files (that are already compressed by this plugin), e.g.
- nginx: Make sure both filter and static modules are enabled. This way pre-compressed
.br
files will be served while dynamic content can be compressed on-the-fly. Protip:brotli_types text/plain text/css application/javascript application/json image/svg+xml application/xml+rss;
to prevent compressing media files (which are already compressed anyway). - Apache: See 'Serving pre-compressed content' section of mod_brotli.
- Caddy: 0.9.4+ by default support pre-compressed
.gz
.br
files and on-the-fly gzip compress dynamic files. - express/connect: Use pre-compressed-assets. You still can continue to use compression/shrink-ray-current for dynamic files.
Credits
All credits go to the following work:
- hexo-neat by rozbo
- neat html by HTMLMinifier
- neat css by clean-css
- neat js by terser
- gzip feature is inspired by hexo-generator-optimize