
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
terser-loader
Advanced tools
Terser loader for webpack
To begin, you'll need to install terser-loader
:
yarn add --dev terser-loader
npm install terser-loader --save-dev
Then add the loader to your webpack
config. For example:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.js$/,
use: ['file-loader', 'terser-loader'],
},
],
},
};
Another example:
module.exports = {
module: {
rules: [
{
test: /.js$/,
use: [
{
loader: 'file-loader',
},
{
loader: 'terser-loader',
options: {
stripTrailingSemicolon: true,
terserOptions: {
minify: {
mangle: false,
},
output: {
inline_script: true,
},
},
},
},
],
},
],
},
};
terserOptions
Optional, type: object
, default: {}
See Terser API Reference for details. terserOptions
as passed to Terser API as is.
stripTrailingSemicolon
Optional, type: boolean
, default: false
By default, terser'ed output ends with ;
. It's generally a good idea if you plan on concatenating produced scripts into a bundle at a later stage. Otherwise, you can safely remove ;
by setting stripTrailingSemicolon
to true
and save yet another byte.
FAQs
Terser loader for webpack
The npm package terser-loader receives a total of 3,049 weekly downloads. As such, terser-loader popularity was classified as popular.
We found that terser-loader 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.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.