Gathering detailed insights and metrics for @types/dexie-batch
Gathering detailed insights and metrics for @types/dexie-batch
Gathering detailed insights and metrics for @types/dexie-batch
Gathering detailed insights and metrics for @types/dexie-batch
npm install @types/dexie-batch
Typescript
Module System
64.4
Supply Chain
73.5
Quality
75.5
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Total Downloads
27,851
Last Day
7
Last Week
64
Last Month
428
Last Year
3,531
48,918 Stars
88,339 Commits
30,221 Forks
641 Watching
5 Branches
9,977 Contributors
Latest Version
0.4.7
Package Id
@types/dexie-batch@0.4.7
Unpacked Size
4.36 kB
Size
1.78 kB
File Count
5
Publised On
07 Nov 2023
Cumulative downloads
Total Downloads
Last day
-41.7%
7
Compared to previous day
Last week
-49.6%
64
Compared to previous week
Last month
97.2%
428
Compared to previous month
Last year
-52.9%
3,531
Compared to previous year
1
npm install --save @types/dexie-batch
This package contains type definitions for dexie-batch (https://github.com/raphinesse/dexie-batch#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dexie-batch.
1import { Dexie } from "dexie"; 2 3declare namespace DexieBatch { 4 interface Options { 5 batchSize: number; 6 limit?: number | undefined; 7 } 8 type Callback<T> = (item: T, index: number) => void; 9} 10 11declare class DexieBatch { 12 private readonly opts: DexieBatch.Options; 13 14 constructor(opts: DexieBatch.Options); 15 16 isParallel(): boolean; 17 18 each<T>(collection: Dexie.Collection<T>, callback: DexieBatch.Callback<T>): Dexie.Promise<number>; 19 eachBatch<T>(collection: Dexie.Collection<T>, callback: DexieBatch.Callback<T[]>): Dexie.Promise<number>; 20 eachBatchParallel<T>(collection: Dexie.Collection<T>, callback: DexieBatch.Callback<T[]>): Dexie.Promise<number>; 21 eachBatchSerial<T>( 22 collection: Dexie.Collection<T>, 23 callback: DexieBatch.Callback<T[]>, 24 batchIdx?: number, 25 ): Dexie.Promise<number>; 26} 27 28export as namespace DexieBatch; 29export = DexieBatch; 30
These definitions were written by Florian Imdahl.
No vulnerabilities found.
Reason
30 commit(s) and 5 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
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 2024-12-23
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