Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@types/connect-mongodb-session
Advanced tools
TypeScript definitions for connect-mongodb-session
npm install --save @types/connect-mongodb-session
This package contains type definitions for connect-mongodb-session (https://github.com/mongodb-js/connect-mongodb-session#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-mongodb-session.
import session = require("express-session");
import { MongoClient, MongoClientOptions } from "mongodb";
export = ConnectMongoDBSession;
declare function ConnectMongoDBSession(fn: typeof session): typeof ConnectMongoDBSession.MongoDBStore;
declare namespace ConnectMongoDBSession {
class MongoDBStore extends session.Store {
constructor(connection?: MongoDBSessionOptions, callback?: (error: Error) => void);
client: MongoClient;
get(sid: string, callback: (err: any, session?: session.SessionData | null) => void): void;
set(sid: string, session: session.SessionData, callback?: (err?: any) => void): void;
destroy(sid: string, callback?: (err?: any) => void): void;
all(
callback: (err: any, obj?: session.SessionData[] | { [sid: string]: session.SessionData } | null) => void,
): void;
clear(callback?: (err?: any) => void): void;
}
interface MongoDBSessionOptions {
uri: string;
collection: string;
expires?: number | undefined;
databaseName?: string | undefined;
connectionOptions?: MongoClientOptions | undefined;
idField?: string | undefined;
expiresKey?: string | undefined;
expiresAfterSeconds?: number | undefined;
}
}
These definitions were written by Nattapong Sirilappanich, and Ravi van Rooijen.
FAQs
TypeScript definitions for connect-mongodb-session
The npm package @types/connect-mongodb-session receives a total of 4,428 weekly downloads. As such, @types/connect-mongodb-session popularity was classified as popular.
We found that @types/connect-mongodb-session 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.