Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@types/canvas-size
Advanced tools
TypeScript definitions for canvas-size
npm install --save @types/canvas-size
This package contains type definitions for canvas-size (https://github.com/jhildenbiddle/canvas-size).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/canvas-size.
interface CanvasSizeCommonOptions {
useWorker?: boolean;
usePromise?: boolean;
onError?: (width: number, height: number, benchmark: number) => any;
onSuccess?: (width: number, height: number, benchmark: number) => any;
}
interface CanvasSizeTestOptions extends CanvasSizeCommonOptions {
width?: number;
height?: number;
sizes?: Array<[number, number]>;
}
interface CanvasSizeMaxOptions extends CanvasSizeCommonOptions {
max?: number;
min?: number;
step?: number;
}
interface CanvasSizeMaxReturn {
width: number;
height: number;
benchmark: number;
}
interface CanvasSize {
test(options: CanvasSizeTestOptions): boolean;
maxArea(options: CanvasSizeMaxOptions & { usePromise?: false }): void;
maxArea(options: CanvasSizeMaxOptions & { usePromise: true }): Promise<CanvasSizeMaxReturn>;
maxWidth(options: CanvasSizeMaxOptions & { usePromise?: false }): void;
maxWidth(options: CanvasSizeMaxOptions & { usePromise: true }): Promise<CanvasSizeMaxReturn>;
maxHeight(options: CanvasSizeMaxOptions & { usePromise?: false }): void;
maxHeight(options: CanvasSizeMaxOptions & { usePromise: true }): Promise<CanvasSizeMaxReturn>;
}
declare const canvasSize: CanvasSize;
export as namespace canvasSize;
export = canvasSize;
These definitions were written by Daniel Kucal.
FAQs
TypeScript definitions for canvas-size
The npm package @types/canvas-size receives a total of 24,433 weekly downloads. As such, @types/canvas-size popularity was classified as popular.
We found that @types/canvas-size 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 found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
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.