Gathering detailed insights and metrics for @types/pumpify
Gathering detailed insights and metrics for @types/pumpify
Gathering detailed insights and metrics for @types/pumpify
Gathering detailed insights and metrics for @types/pumpify
The repository for high quality TypeScript type definitions.
npm install @types/pumpify
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.16%)
Shell (0.01%)
Total Downloads
41,643,343
Last Day
12,293
Last Week
160,737
Last Month
670,989
Last Year
8,074,141
NOASSERTION License
49,709 Stars
89,364 Commits
30,382 Forks
640 Watchers
6 Branches
9,955 Contributors
Updated on May 11, 2025
Latest Version
1.4.4
Package Id
@types/pumpify@1.4.4
Unpacked Size
4.33 kB
Size
1.84 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
2.1%
12,293
Compared to previous day
Last Week
3.4%
160,737
Compared to previous week
Last Month
-14.3%
670,989
Compared to previous month
Last Year
1.2%
8,074,141
Compared to previous year
2
npm install --save @types/pumpify
This package contains type definitions for pumpify (https://github.com/mafintosh/pumpify).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pumpify.
1/// <reference types="node" /> 2 3import * as duplexify from "duplexify"; 4import { Duplex, Readable, Stream, Writable } from "stream"; 5 6declare class Pumpify extends Duplex implements duplexify.Duplexify { 7 constructor(...streams: Stream[]); 8 constructor(streams: Stream[]); 9 setPipeline(...streams: Stream[]): void; 10 setPipeline(streams: Stream[]): void; 11 12 // Duplexify members 13 setWritable(writable: Writable): void; 14 setReadable(readable: Readable): void; 15} 16 17interface PumpifyFactoryOptions { 18 autoDestroy: boolean; 19 destroy: boolean; 20 objectMode: boolean; 21 highWaterMark: number; 22} 23 24declare namespace Pumpify { 25 let obj: typeof Pumpify; 26 function ctor(opts: PumpifyFactoryOptions): typeof Pumpify; 27} 28 29export = Pumpify; 30
These definitions were written by Justin Beckwith, and Ankur Oberoi.
No vulnerabilities found.
Reason
all changesets reviewed
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More