
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
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 Meteor 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.
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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.