mirror of https://github.com/curbengh/hexo-yam
docs: reorder sections
removed outdated http-compression section
This commit is contained in:
parent
7639547408
commit
73db847fd4
257
README.md
257
README.md
|
@ -8,7 +8,6 @@
|
|||
|
||||
Yet Another Minifier for Hexo. Minify and compress HTML, JS, CSS, SVG, XML and JSON. [Other files](https://github.com/curbengh/hexo-yam/blob/ba77db0094a7c07ea9f70f010bfc15541d4105ca/index.js#L64) are also compressed. Support gzip, brotli and zstd [compressions](https://en.wikipedia.org/wiki/HTTP_compression).
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
- [Installation](#installation)
|
||||
|
@ -17,22 +16,22 @@ Yet Another Minifier for Hexo. Minify and compress HTML, JS, CSS, SVG, XML and J
|
|||
- [CSS](#css)
|
||||
- [JS](#js)
|
||||
- [SVG](#svg)
|
||||
- [XML](#xml)
|
||||
- [JSON](#json)
|
||||
- [Gzip](#gzip)
|
||||
- [Brotli](#brotli)
|
||||
- [Zstd](#zstd)
|
||||
- [XML](#xml)
|
||||
- [JSON](#json)
|
||||
- [Globbing](#globbing)
|
||||
- [HTTP Compression](#http-compression)
|
||||
|
||||
## Installation
|
||||
``` bash
|
||||
|
||||
```bash
|
||||
$ npm install hexo-yam --save
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
enable: true
|
||||
previewServer: true
|
||||
|
@ -59,12 +58,13 @@ minify:
|
|||
|
||||
## HTML
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
html:
|
||||
enable: true
|
||||
exclude:
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`. Set lower value to set higher priority and vice versa.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
|
@ -75,13 +75,14 @@ For more options, see [HTMLMinifier](https://github.com/kangax/html-minifier).
|
|||
|
||||
## CSS
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
css:
|
||||
enable: true
|
||||
exclude:
|
||||
- '*.min.css'
|
||||
- "*.min.css"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
|
@ -93,13 +94,14 @@ For more options, see [clean-css](https://github.com/jakubpawlowicz/clean-css).
|
|||
|
||||
## JS
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
js:
|
||||
enable: true
|
||||
exclude:
|
||||
- '*.min.js'
|
||||
- "*.min.js"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
|
@ -114,14 +116,15 @@ For more options, see [Terser](https://github.com/terser-js/terser).
|
|||
|
||||
## SVG
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
svg:
|
||||
enable: true
|
||||
include:
|
||||
- '*.svg'
|
||||
- '!*.min.svg'
|
||||
- "*.svg"
|
||||
- "!*.min.svg"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
|
@ -129,7 +132,7 @@ minify:
|
|||
- Exclude `*.min.svg` by default.
|
||||
- **plugins** - Plugin options.
|
||||
- Examples:
|
||||
``` yaml
|
||||
```yaml
|
||||
plugins:
|
||||
# Retain comments
|
||||
removeComments: false
|
||||
|
@ -139,102 +142,19 @@ minify:
|
|||
- For more options, see [svgo](https://github.com/svg/svgo).
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
|
||||
## Gzip
|
||||
|
||||
``` yaml
|
||||
minify:
|
||||
gzip:
|
||||
enable: true
|
||||
include:
|
||||
- '*.html'
|
||||
- '*.css'
|
||||
- '*.js'
|
||||
- '*.txt'
|
||||
- '*.ttf'
|
||||
- '*.atom'
|
||||
- '*.stl'
|
||||
- '*.xml'
|
||||
- '*.svg'
|
||||
- '*.eot'
|
||||
- '*.json'
|
||||
```
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
- **include** - Include files. Support [wildcard](http://www.globtester.com/) pattern(s) in a string or array.
|
||||
- Support one-liner, `include: ['*.html','*.css','*.js']`.
|
||||
- Must include asterisk and single quotes. `.html` is invalid. `'*.html'` is valid.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
- **level** - Compression level; lower value may results in faster compression but slightly larger (compressed) file. Range `1-9`. Defaults to `9`, or the value of [`zlib.constants.Z_BEST_COMPRESSION`](https://nodejs.org/docs/latest-v12.x/api/zlib.html#zlib_zlib_constants)
|
||||
|
||||
## Brotli
|
||||
|
||||
``` yaml
|
||||
minify:
|
||||
brotli:
|
||||
enable: true
|
||||
include:
|
||||
- '*.html'
|
||||
- '*.css'
|
||||
- '*.js'
|
||||
- '*.txt'
|
||||
- '*.ttf'
|
||||
- '*.atom'
|
||||
- '*.stl'
|
||||
- '*.xml'
|
||||
- '*.svg'
|
||||
- '*.eot'
|
||||
- '*.json'
|
||||
```
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
- **include** - Include files. Support [wildcard](http://www.globtester.com/) pattern(s) in a string or array.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
- **level** - Compression level. Range `1-11`. Defaults to `11`, or the value of [`zlib.constants.BROTLI_MAX_QUALITY`](https://nodejs.org/docs/latest-v12.x/api/zlib.html#zlib_brotli_constants)
|
||||
|
||||
## Zstd
|
||||
|
||||
``` yaml
|
||||
minify:
|
||||
zstd:
|
||||
enable: false
|
||||
include:
|
||||
- '*.html'
|
||||
- '*.css'
|
||||
- '*.js'
|
||||
- '*.txt'
|
||||
- '*.ttf'
|
||||
- '*.atom'
|
||||
- '*.stl'
|
||||
- '*.xml'
|
||||
- '*.svg'
|
||||
- '*.eot'
|
||||
- '*.json'
|
||||
```
|
||||
- **enable** - Enable the plugin. Defaults to `false`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
- **include** - Include files. Support [wildcard](http://www.globtester.com/) pattern(s) in a string or array.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
- **level** - Compression level. Range `1-22`. Defaults to `3`, or the value of [`DEFAULT_LEVEL`](https://github.com/mongodb-js/zstd/blob/a3a08c61c9045411c8275e248498dbc583457fb5/src/lib.rs#L9)
|
||||
|
||||
### Cannot find module '@mongodb-js/zstd-linux-x64-gnu'
|
||||
|
||||
`npm install --include=optional --force`
|
||||
|
||||
## XML
|
||||
|
||||
Remove whitespaces in xml.
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
xml:
|
||||
enable: false
|
||||
include:
|
||||
- '*.xml'
|
||||
- '!*.min.xml'
|
||||
- "*.xml"
|
||||
- "!*.min.xml"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `false`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
|
@ -249,14 +169,15 @@ For more options, see [minify-xml](https://github.com/kristian/minify-xml#option
|
|||
|
||||
Remove whitespaces in json.
|
||||
|
||||
``` yaml
|
||||
```yaml
|
||||
minify:
|
||||
json:
|
||||
enable: false
|
||||
include:
|
||||
- '*.json'
|
||||
- '!*.min.json'
|
||||
- "*.json"
|
||||
- "!*.min.json"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `false`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
|
@ -264,6 +185,93 @@ minify:
|
|||
- Exclude `*.min.json` by default.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
|
||||
## Gzip
|
||||
|
||||
```yaml
|
||||
minify:
|
||||
gzip:
|
||||
enable: true
|
||||
include:
|
||||
- "*.html"
|
||||
- "*.css"
|
||||
- "*.js"
|
||||
- "*.txt"
|
||||
- "*.ttf"
|
||||
- "*.atom"
|
||||
- "*.stl"
|
||||
- "*.xml"
|
||||
- "*.svg"
|
||||
- "*.eot"
|
||||
- "*.json"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
- **include** - Include files. Support [wildcard](http://www.globtester.com/) pattern(s) in a string or array.
|
||||
- Support one-liner, `include: ['*.html','*.css','*.js']`.
|
||||
- Must include asterisk and single quotes. `.html` is invalid. `'*.html'` is valid.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
- **level** - Compression level; lower value may results in faster compression but slightly larger (compressed) file. Range `1-9`. Defaults to `9`, or the value of [`zlib.constants.Z_BEST_COMPRESSION`](https://nodejs.org/docs/latest-v12.x/api/zlib.html#zlib_zlib_constants)
|
||||
|
||||
## Brotli
|
||||
|
||||
```yaml
|
||||
minify:
|
||||
brotli:
|
||||
enable: true
|
||||
include:
|
||||
- "*.html"
|
||||
- "*.css"
|
||||
- "*.js"
|
||||
- "*.txt"
|
||||
- "*.ttf"
|
||||
- "*.atom"
|
||||
- "*.stl"
|
||||
- "*.xml"
|
||||
- "*.svg"
|
||||
- "*.eot"
|
||||
- "*.json"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `true`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
- **include** - Include files. Support [wildcard](http://www.globtester.com/) pattern(s) in a string or array.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
- **level** - Compression level. Range `1-11`. Defaults to `11`, or the value of [`zlib.constants.BROTLI_MAX_QUALITY`](https://nodejs.org/docs/latest-v12.x/api/zlib.html#zlib_brotli_constants)
|
||||
|
||||
## Zstd
|
||||
|
||||
```yaml
|
||||
minify:
|
||||
zstd:
|
||||
enable: false
|
||||
include:
|
||||
- "*.html"
|
||||
- "*.css"
|
||||
- "*.js"
|
||||
- "*.txt"
|
||||
- "*.ttf"
|
||||
- "*.atom"
|
||||
- "*.stl"
|
||||
- "*.xml"
|
||||
- "*.svg"
|
||||
- "*.eot"
|
||||
- "*.json"
|
||||
```
|
||||
|
||||
- **enable** - Enable the plugin. Defaults to `false`.
|
||||
- **priority** - Plugin's priority. Defaults to `10`.
|
||||
- **verbose** - Verbose output. Defaults to `false`.
|
||||
- **include** - Include files. Support [wildcard](http://www.globtester.com/) pattern(s) in a string or array.
|
||||
- **globOptions** - See [globbing](#globbing) section.
|
||||
- **level** - Compression level. Range `1-22`. Defaults to `3`, or the value of [`DEFAULT_LEVEL`](https://github.com/mongodb-js/zstd/blob/a3a08c61c9045411c8275e248498dbc583457fb5/src/lib.rs#L9)
|
||||
|
||||
### Cannot find module '@mongodb-js/zstd-linux-x64-gnu'
|
||||
|
||||
`npm install --include=optional --force`
|
||||
|
||||
## Globbing
|
||||
|
||||
Use "globOptions" to customise how glob patterns match files. Refer to [micromatch](https://github.com/micromatch/micromatch#options) for available options.
|
||||
|
@ -272,51 +280,32 @@ Use "globOptions" to customise how glob patterns match files. Refer to [micromat
|
|||
- basename is disabled depending on each pattern.
|
||||
- This means the following options would work,
|
||||
|
||||
``` yml
|
||||
```yml
|
||||
exclude:
|
||||
- '*foo.html' # basename is enabled
|
||||
- '**/bar/*/*.html' # basename is automatically disabled
|
||||
- '*baz.css' # basename is enabled
|
||||
- "*foo.html" # basename is enabled
|
||||
- "**/bar/*/*.html" # basename is automatically disabled
|
||||
- "*baz.css" # basename is enabled
|
||||
globOptions:
|
||||
basename: true # default
|
||||
```
|
||||
|
||||
- This behaviour doesn't apply to pattern that starts with `!` (negation).
|
||||
- This limitation only applies to `include:` option used in svg, gzip and brotli.
|
||||
- This means the following options would *not* work,
|
||||
- This means the following options would _not_ work,
|
||||
|
||||
``` yml
|
||||
```yml
|
||||
include:
|
||||
- '!foo.svg'
|
||||
- '!**/bar/*/*.svg'
|
||||
- "!foo.svg"
|
||||
- "!**/bar/*/*.svg"
|
||||
globOptions:
|
||||
basename: true
|
||||
```
|
||||
|
||||
- basename will stay disabled, if explicitly disabled in "globOptions".
|
||||
|
||||
|
||||
## HTTP Compression
|
||||
|
||||
While most modern web browsers [support Brotli](https://www.caniuse.com/#feat=brotli), you also need to consider whether the web/app server, hosting platform, reverse proxy or CDN (whichever relevant to you) support it.
|
||||
|
||||
Brotli support as of May 2022:
|
||||
|
||||
Name | Brotli support
|
||||
--- | ---
|
||||
GitHub Pages | [In consideration](https://github.community/t5/GitHub-Pages/Support-for-pre-compressed-assets-and-brotli-compression/m-p/22055)
|
||||
GitLab Pages | Yes
|
||||
Netlify | Yes
|
||||
Hexo Server | [In progress](https://github.com/hexojs/hexo-server/pull/100)
|
||||
|
||||
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),
|
||||
|
||||
- [Caddy](https://caddyserver.com/features): [0.9.4+](https://caddyserver.com/blog/caddy-0_9_4-released) by default support pre-compressed `.gz` `.br` files and on-the-fly gzip compress dynamic files. [v2.4.0+](https://github.com/caddyserver/caddy/releases/tag/v2.4.0-beta.2) requires specifying the [`precompressed`](https://caddyserver.com/docs/caddyfile/directives/file_server) option.
|
||||
- [nginx](https://github.com/google/ngx_brotli): 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](https://httpd.apache.org/docs/2.4/en/mod/mod_brotli.html): See 'Serving pre-compressed content' section of [mod_brotli](https://httpd.apache.org/docs/2.4/en/mod/mod_brotli.html).
|
||||
- [express](https://github.com/expressjs/express)/[connect](https://github.com/senchalabs/connect): Use [pre-compressed-assets](https://github.com/domadams/pre-compressed-assets). You still can continue to use [compression](https://github.com/expressjs/compression)/[shrink-ray-current](https://github.com/Alorel/shrink-ray) for dynamic files.
|
||||
|
||||
## Credits
|
||||
|
||||
All credits go to the following work:
|
||||
|
||||
- [hexo-neat](https://github.com/rozbo/hexo-neat) by rozbo
|
||||
- gzip feature is inspired by [hexo-generator-optimize](https://github.com/JackyRen/hexo-generator-optimize)
|
||||
|
|
Loading…
Reference in New Issue