![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
mangle-css-class-webpack-plugin
Advanced tools
Minifies and obfuscates the class names in your existing JavaScript, CSS, and HTML without any modern css modules.
Minifies and obfuscates the class names in JavaScript, CSS, and HTML
npm i --save-dev mangle-css-class-webpack-plugin
yarn add --dev mangle-css-class-webpack-plugin
The plugin will generate optimized class name in HTML, JavaScript, and CSS files. configure as follows:
webpack.config.js
const MangleCssClassPlugin = require('mangle-css-class-webpack-plugin');
module.exports = {
...
plugins: [
new MangleCssClassPlugin({
// Modify `classNameRegExp` as your product. the sample regexp maches 'l-main', 'c-textbox', 'l-main__header', 'c-textbox__input', ...
classNameRegExp: '[cl]-[a-z][a-zA-Z0-9_]*',
log: true,
}),
],
};
This will replace class name matched regex in HTML, JavaScript, CSS files. Identify the class names not to match unexpected words since it replaces all words that are matched with the classNameRegExp
.
I suggest that your class names have specific prefix or suffix that identified as a class name.
e.g.
<!-- html -->
<main class='l-abc'>
<div class='l-efg' />
</main>
// js
document.querySelector('l-efg');
// css
.l-abc {
}
.l-abc .l-efg {
}
<!-- html -->
<main class='a'>
<div class='b' />
</main>
// js
document.querySelector('b');
// css
.a {
}
.a .b {
}
4.0.6 (2020-02-20)
<a name="4.0.3"></a>
FAQs
Minifies and obfuscates the class names in your existing JavaScript, CSS, and HTML without any modern css modules.
The npm package mangle-css-class-webpack-plugin receives a total of 747 weekly downloads. As such, mangle-css-class-webpack-plugin popularity was classified as not popular.
We found that mangle-css-class-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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.