
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
total-config-webpack-plugin
Advanced tools
In some projects, I wind up with tons of ***.config.js files, for example babel.config.js, jest.config.js, postcss.config.js, etc. Since they all start with different names, these files wind up scattered throughout my file tree, hard to visually find, and add a lot of clutter for files which rarely change. This plugin allows you to combine those files into one.
This is for you if you have multiple configuration files, especially if they don't change very often.
It is not for you if you only have one config file or if you're not using webpack.
***.config.js
files into a single total.config.js
file***.config.js
Note: If you use this plugin and also include the config files, the files will be deleted and overwritten by the plugin. Do NOT try to put your webpack config info into your total.config.js file
Install: yarn add total-config-webpack-plugin
In your webpack config, add this plugin:
const TotalConfigPlugin = require('../total-config-plugin/dist/cjs')
plugins: [
...
new TotalConfigPlugin({}),
...
]
total.config.js
. Here's an example:module.exports = {
test: {
message: "Hello world!"
},
babel: {
presets: ['@babel/preset-env']
}
}
This will generate two temporary config files at build-time, test.config.js
and babel.config.js
, which will export the config objects given in the total config respectively.
FAQs
Webpack Plugin for combining config files into one
We found that total-config-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 how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.