Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
meteor-package
Advanced tools
Integration for using and relying on Meteor Atmosphere packages in npm packages.
The Meteor framework has its own packaging system apart from npm that uses packages from atmospherejs.com. This package exists to make integrating npm packages with Atmosphere packages easy.
Inside your npm package or non-Meteor code, you can rely on a package by simply getting it in the proper environment (client or server) like this:
import { getMeteorClientPackage, getMeteorServerPackage } from 'meteor-package';
// rely on a Meteor package on the client
const SimpleSchema = getMeteorClientPackage('aldeed:simlpe-schema');
// rely on a Meteor package on the server
const cluster = getMeteorServerPackage('meteorhacks:cluster');
If the package is missing in the specified environment, an error will be thrown with instructions on how to meet the dependency requirement like this:
$: ==> Meteor Package missing: 'aldeed:simple-schema' on client environment.
Please run 'meteor add aldeed:simple-schema' to satisfy the Meteor
package dependency.
FAQs
Integration for using and relying on Meteor Atmosphere packages in npm packages.
The npm package meteor-package receives a total of 0 weekly downloads. As such, meteor-package popularity was classified as not popular.
We found that meteor-package 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.