Gathering detailed insights and metrics for @types/tough-cookie-filestore
Gathering detailed insights and metrics for @types/tough-cookie-filestore
Gathering detailed insights and metrics for @types/tough-cookie-filestore
Gathering detailed insights and metrics for @types/tough-cookie-filestore
The repository for high quality TypeScript type definitions.
npm install @types/tough-cookie-filestore
Typescript
Module System
65.9
Supply Chain
84.8
Quality
75.3
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
17,983
Last Day
2
Last Week
9
Last Month
49
Last Year
955
NOASSERTION License
49,995 Stars
89,697 Commits
30,436 Forks
641 Watchers
6 Branches
9,957 Contributors
Updated on Jul 03, 2025
Latest Version
0.0.3
Package Id
@types/tough-cookie-filestore@0.0.3
Unpacked Size
5.24 kB
Size
1.81 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
2
Compared to previous day
Last Week
125%
9
Compared to previous week
Last Month
-22.2%
49
Compared to previous month
Last Year
-54%
955
Compared to previous year
npm install --save @types/tough-cookie-filestore
This package contains type definitions for tough-cookie-filestore (https://github.com/mitsuru/tough-cookie-filestore).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tough-cookie-filestore.
1export = FileCookieStore; 2 3declare namespace FileCookieStore { 4 interface Cookie { 5 domain: string; 6 path: string; 7 key: string; 8 } 9} 10 11declare class FileCookieStore { 12 idx: { 13 [domain: string]: { 14 [path: string]: { 15 [key: string]: FileCookieStore.Cookie; 16 }; 17 }; 18 }; 19 filePath: string; 20 synchronous: boolean; 21 22 constructor(filePath: string); 23 24 inspect(): string; 25 26 findCookie( 27 domain: string, 28 path: string, 29 key: string, 30 cb: (whatever: null, cookie: FileCookieStore.Cookie | null | undefined) => void, 31 ): void; 32 33 findCookies(domain: string, path: string, cb: (whatever: null, cookies: FileCookieStore.Cookie[]) => void): void; 34 35 putCookie(cookie: FileCookieStore.Cookie, path: string, key: string, cb: (whatever: null) => void): void; 36 37 updateCookie( 38 oldCookie: FileCookieStore.Cookie, 39 newCookie: FileCookieStore.Cookie, 40 cb: (whatever: null) => void, 41 ): void; 42 43 removeCookie(domain: string, path: string, key: string, cb: (whatever: null) => void): void; 44 45 removeCookies(domain: string, path: string, cb: (whatever: null) => void): void; 46 47 saveToFile(filePath: string, data: any, cb: () => void): void; 48 49 loadFromFile(filePath: string, cb: (data: any) => void): void; 50} 51
These definitions were written by Christian Friedow.
No vulnerabilities found.
Reason
30 commit(s) and 1 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
Found 25/29 approved changesets -- score normalized to 8
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-06-30
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