Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@types/continuation-local-storage
Advanced tools
TypeScript definitions for continuation-local-storage
npm install --save @types/continuation-local-storage
This package contains type definitions for continuation-local-storage (https://github.com/othiym23/node-continuation-local-storage).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/continuation-local-storage.
/// <reference types="node" />
export type Context = {
[key: string]: any;
};
export type BindCallbackFn<T> = (...args: any[]) => T;
export type RunCallbackFn<T> = (context: Context) => T;
export interface Namespace {
readonly name: string; // Note: this is readonly because changing it does not actually rename it
readonly active: Context; // Note: this is readonly because changing it manually will break functionality
createContext(): Context;
set<T>(key: string, value: T): T;
get<T>(key: string): T | undefined;
run<T = void>(callback: RunCallbackFn<T>): Context;
runAndReturn<T>(callback: RunCallbackFn<T>): T;
bind<T = void>(callback: BindCallbackFn<T>, context?: Context): BindCallbackFn<T>;
bindEmitter(emitter: NodeJS.EventEmitter): void;
enter(context: Context): void;
exit(context: Context): void;
}
export function createNamespace(name: string): Namespace;
export function getNamespace(name: string): Namespace | undefined;
export function destroyNamespace(name: string): void;
export function reset(): void;
// declare namespace process {
// var namespaces: ContinuationLocalStorage.Namespace[];
// }
These definitions were written by Jang-Ho Hwang, Kei Son, and Dmitry Kudryavtsev.
FAQs
TypeScript definitions for continuation-local-storage
The npm package @types/continuation-local-storage receives a total of 298,756 weekly downloads. As such, @types/continuation-local-storage popularity was classified as popular.
We found that @types/continuation-local-storage 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.