
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
webpack-encoding-plugin-quiet
Advanced tools
Take control over the encoding of emitted webpack assets. This can be useful, if the delivering webserver enforces a specific content-type, so that your js-code is not interpreted as utf-8 by the browser.
install module
npm install webpack-encoding-plugin
setup webpack config
var EncodingPlugin = require('webpack-encoding-plugin');
module.exports = {
entry: './entry.js',
output: {
path: '../dist',
filename: 'bundle.js'
},
plugins: [new EncodingPlugin({
encoding: 'iso-8859-1'
})]
};
Additional options:
test, include, exclude RegExp or array of RegExps to filter processed files
(default test is /(\.js|\.css)($|\?)/i)
The Plugin uses iconv-lite to handle the encoding. A list of supported encodings can be found here
FAQs
Control Webpacks output encoding
The npm package webpack-encoding-plugin-quiet receives a total of 0 weekly downloads. As such, webpack-encoding-plugin-quiet popularity was classified as not popular.
We found that webpack-encoding-plugin-quiet 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.