
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.
webpack-config-lusk
Advanced tools
This lib is an opinionated webpack config that relies on conventions over configuration. Intended for use in Lusk apps.
npm install --save webpack-config-lusk
In your webpack.config.js
:
const luskConfig = require("webpack-config-lusk");
module.exports = luskConfig({ minify: true });
The config has four options:
false
)Enables production optimizations. Usually, you'd want to set this value dynamically based on something like process.env.MINIFY
.
[]
)Allows for requiring additional dependencies into the bundle at build time. You might want to use this for stuff like i18n locale data or polyfills.
module.exports = luskConfig({
extraEntries: config.SUPPORTED_LANGUAGES.map(
lang => `intl-messageformat/dist/locale-data/${lang}`
),
})
See the documentation for more info: https://webpack.js.org/concepts/entry-points/#single-entry-shorthand-syntax
"client"
)Name of the folder where the client source code lives. Only supply this if you need to support a legacy app.
"static"
)Name of the folder where the final bundle will be written to. Only supply this if you need to support a legacy app.
FAQs
Webpack configs used at Lusk
We found that webpack-config-lusk 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.