Gathering detailed insights and metrics for @types/dockerode-compose
Gathering detailed insights and metrics for @types/dockerode-compose
Gathering detailed insights and metrics for @types/dockerode-compose
Gathering detailed insights and metrics for @types/dockerode-compose
The repository for high quality TypeScript type definitions.
npm install @types/dockerode-compose
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,033 Stars
89,737 Commits
30,434 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 14, 2025
Latest Version
1.4.1
Package Id
@types/dockerode-compose@1.4.1
Unpacked Size
5.04 kB
Size
1.86 kB
File Count
5
Published on
Feb 21, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
npm install --save @types/dockerode-compose
This package contains type definitions for dockerode-compose (https://github.com/apocas/dockerode-compose#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dockerode-compose.
1import * as Dockerode from "dockerode"; 2 3declare namespace DockerodeCompose { 4 interface ComposeDownOptions { 5 volumes: boolean; 6 } 7 8 interface ComposeDownOutput { 9 file: string; 10 services: []; 11 networks: []; 12 volumes: [] | undefined; 13 } 14 15 interface ComposeUpOptions { 16 verbose: boolean; 17 } 18 19 interface ComposeUpOutput { 20 file: string; 21 secrets: any[]; 22 volumes: Dockerode.VolumeCreateResponse[]; 23 configs: any[]; 24 networks: Network[]; 25 services: Dockerode.Container[]; 26 } 27 28 interface ComposePullOptions { 29 verbose: boolean; 30 streams: boolean; 31 } 32 33 interface Network { 34 name: string; 35 network: Dockerode.Network; 36 } 37} 38 39declare class Compose { 40 constructor(dockerode: Dockerode, file: string, projectName: string); 41 42 /* @async */ 43 down(options?: DockerodeCompose.ComposeDownOptions): Promise<DockerodeCompose.ComposeDownOutput>; 44 45 /* @async */ 46 up(options?: DockerodeCompose.ComposeUpOptions): Promise<DockerodeCompose.ComposeUpOutput>; 47 48 /* @async */ 49 pull(serviceN?: string, options?: DockerodeCompose.ComposePullOptions): Promise<any[]>; 50} 51 52export = Compose; 53
These definitions were written by Josua Frank.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
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-07-07
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