Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.