Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
brotli-webpack-plugin
Advanced tools
Prepare Brotli-compressed versions of assets to serve them with Content-Encoding: br
This plugin compresses assets with Brotli compression algorithm using zlib, iltorb or brotli.js libraries for serving it with ngx_brotli or such.
npm install --save-dev brotli-webpack-plugin
var BrotliPlugin = require('brotli-webpack-plugin');
module.exports = {
plugins: [
new BrotliPlugin({
asset: '[path].br[query]',
test: /\.(js|css|html|svg)$/,
threshold: 10240,
minRatio: 0.8
})
]
}
Arguments:
asset
: The target asset name. Defaults to '[path].br[query]'
.
[file]
is replaced with the original asset file name.[fileWithoutExt]
is replaced with the file name minus its extension, e.g. the style
of style.css
.[ext]
is replaced with the file name extension, e.g. the css
of style.css
.[path]
is replaced with the path of the original asset.[query]
is replaced with the query.test
: All assets matching this RegExp are processed. Defaults to every asset.threshold
: Only assets bigger than this size (in bytes) are processed. Defaults to 0
.minRatio
: Only assets that compress better that this ratio are processed. Defaults to 0.8
.deleteOriginalAssets
: remove original files that were compressed with brotli. Default: falseOptional arguments for Brotli (see iltorb doc for details):
mode
: Default: 0,quality
: Default: 11,lgwin
: Default: 22,lgblock
: Default: 0,size_hint
: Default: 0,disable_literal_context_modeling
: Default: falseHeavily copy-pasted from webpack/compression-webpack-plugin by Tobias Koppers.
Licensed under MIT.
1.1.0
Added native brotli support via zlib.brotliCompressSync for Node v11.7+.
FAQs
Prepare Brotli-compressed versions of assets to serve them with Content-Encoding: br
The npm package brotli-webpack-plugin receives a total of 56,728 weekly downloads. As such, brotli-webpack-plugin popularity was classified as popular.
We found that brotli-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.