
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@yarnpkg/plugin-catalog
Advanced tools
@yarnpkg/plugin-catalogThis plugin adds support for centralized dependency version management through catalogs, similar to pnpm's catalog feature.
It hooks into:
reduceDependency and replaces catalog ranges with the ones defined in a catalog.beforeWorkspacePacking replacing catalogs with actual ranges before packingThis plugin is included by default starting from Yarn 4.10.0.
Define a catalog in your .yarnrc.yml:
catalog:
react: ^18.0.0
lodash: ^4.17.21
Then reference catalog entries in your package.json:
{
"dependencies": {
"react": "catalog:",
"lodash": "catalog:"
}
}
You can define multiple named catalogs for different purposes:
# Default catalog
catalog:
lodash: ^4.17.21
typescript: ~4.9.0
# Named catalogs
catalogs:
react18:
react: ^18.3.1
react-dom: ^18.3.1
react17:
react: ^17.0.2
react-dom: ^17.0.2
vue3:
vue: ^3.4.0
vuex: ^4.1.0
Then reference them in your package.json:
{
"dependencies": {
"lodash": "catalog:",
"react": "catalog:react18",
"vue": "catalog:vue3"
}
}
The comprehensive feature documentation can be found in packages/docusaurus/docs/features/catalog.mdx.
FAQs
Unknown package
We found that @yarnpkg/plugin-catalog demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.