Gathering detailed insights and metrics for @types/cordova-plugin-file-opener2
Gathering detailed insights and metrics for @types/cordova-plugin-file-opener2
npm install @types/cordova-plugin-file-opener2
Typescript
Module System
67.9
Supply Chain
81
Quality
75.3
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Total Downloads
330,499
Last Day
146
Last Week
687
Last Month
2,866
Last Year
45,020
49,126 Stars
88,654 Commits
30,293 Forks
640 Watching
5 Branches
9,978 Contributors
Latest Version
2.0.3
Package Id
@types/cordova-plugin-file-opener2@2.0.3
Unpacked Size
5.17 kB
Size
1.83 kB
File Count
5
Publised On
07 Nov 2023
Cumulative downloads
Total Downloads
Last day
-24.4%
146
Compared to previous day
Last week
-16.6%
687
Compared to previous week
Last month
-2.5%
2,866
Compared to previous month
Last year
-31.9%
45,020
Compared to previous year
npm install --save @types/cordova-plugin-file-opener2
This package contains type definitions for cordova-plugin-file-opener2 (https://github.com/pwlin/cordova-plugin-file-opener2).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cordova-plugin-file-opener2.
1interface CordovaPluginsFileOpener2Result { 2 status: number; 3 message: string; 4} 5interface CordovaPluginsFileOpener2CallbackContext { 6 success?(): void; 7 error?(error: CordovaPluginsFileOpener2Result): void; 8} 9interface CordovaPluginsFileOpener2 { 10 /** 11 * Open a file with the default file opener and optional callback object: 12 */ 13 open(fileName: string, contentType: string, callbackContext?: CordovaPluginsFileOpener2CallbackContext): void; 14 15 /** 16 * Open a system modal to open document with one of the already installed app and optional callback object 17 */ 18 showOpenWithDialog( 19 fileName: string, 20 contentType: string, 21 callbackContext?: CordovaPluginsFileOpener2CallbackContext, 22 ): void; 23 24 /** 25 * Uninstall a package with its id. Android platform only. 26 */ 27 uninstall(packageId: string, callbackContext?: CordovaPluginsFileOpener2CallbackContext): void; 28 29 /** 30 * Check if an app is already installed. Android platform only. 31 */ 32 appIsInstalled(packageId: string, callbackContext?: { 33 success?(result: CordovaPluginsFileOpener2Result): void; 34 error?(error: CordovaPluginsFileOpener2Result): void; 35 }): void; 36} 37 38interface CordovaPlugins { 39 fileOpener2: CordovaPluginsFileOpener2; 40} 41
These definitions were written by Cyril Gandon.
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
license file detected
Details
Reason
Found 26/30 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-02-03
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