
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@101-ways/core-mongo
Advanced tools
MongoDb client accelerator package. It uses the Service Registry pattern to create a single object with APIs.
import { load } from '@101-ways/core-mongo';
load([`${__dirname}/modules`]).then(async (sr) => {
const collection = sr.mongo.db().collection('test');
const list = await collection.find({}).toArray();
console.log(list);
sr.core.shutdown.run();
});
Basic example for creating a child package:
import { load as loadCore, type Registry } from '@101-ways/core-mongo';
export type { Registry };
export async function load<T extends Registry>(paths: string[] = [], sr?: T) {
return loadCore([`${__dirname}/modules`, ...paths], sr);
}
Everything in @101-ways/core and
Everything in @101-ways/core and
FAQs
Accelerator Mongo package.
The npm package @101-ways/core-mongo receives a total of 0 weekly downloads. As such, @101-ways/core-mongo popularity was classified as not popular.
We found that @101-ways/core-mongo 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.