Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
deassert-loader
Advanced tools
Any donations would be much appreciated. 😄
deassert
is available as part of the Tidelift Subscription.
Tidelift is working with the maintainers of deassert
and a growing network of open source maintainers
to ensure your open source software supply chain meets enterprise standards now and into the future.
Learn more.
# Install with npm
npm install -D deassert-loader
# Install with pnpm
pnpm add -D deassert-loader
# Install with yarn
yarn add -D deassert-loader
# Install with bun
bun add -D deassert-loader
You probably don't want to use this library in your development builds. It's designed to be used in your production builds.
// webpack.config.js
const isProduction = process.env.NODE_ENV === "production";
module.exports = {
// ...
module: {
rules: isProduction
? [
{
test: /\.js?$/u,
use: "deassert-loader",
exclude: /node_modules/u,
},
]
: [],
},
};
FAQs
webpack loader for deassert
We found that deassert-loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.