Gathering detailed insights and metrics for memory-card-lab
Gathering detailed insights and metrics for memory-card-lab
Gathering detailed insights and metrics for memory-card-lab
Gathering detailed insights and metrics for memory-card-lab
npm install memory-card-lab
Typescript
Module System
Min. Node Version
Node Version
NPM Version
74
Supply Chain
99.5
Quality
75.5
Maintenance
100
Vulnerability
99.6
License
TypeScript (57.24%)
JavaScript (38.27%)
Shell (4.49%)
Total Downloads
3,776
Last Day
1
Last Week
1
Last Month
2
Last Year
2,136
5 Stars
189 Commits
3 Forks
3 Watching
1 Branches
2 Contributors
Latest Version
1.1.3
Package Id
memory-card-lab@1.1.3
Unpacked Size
302.12 kB
Size
41.57 kB
File Count
210
NPM Version
9.5.0
Node Version
19.0.0
Publised On
25 Feb 2023
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
1
Compared to previous week
Last month
-50%
2
Compared to previous month
Last year
30.2%
2,136
Compared to previous year
Memory Card is an Easy to Use Key/Value Store, with Swagger API Backend & Serialization Support.
1/** 2 * ES6 Map like Async API 3 */ 4export interface AsyncMapLike<K = any, V = any> { 5 size: Promise<number> 6 7 [Symbol.asyncIterator](): AsyncIterableIterator<[K, V]> 8 entries() : AsyncIterableIterator<[K, V]> 9 keys () : AsyncIterableIterator<K> 10 values () : AsyncIterableIterator<V> 11 12 get (key: K) : Promise<V | undefined> 13 set (key: K, value: V) : Promise<void> 14 has (key: K) : Promise<boolean> 15 delete (key: K) : Promise<void> 16 clear () : Promise<void> 17} 18 19export class MemoryCard implements AsyncMapLike { ... }
MemoryCard
is an AsyncMapLike interface
multiplex()
method to Multiplex MemoryStore to sub-MemoryStores.@next
tag support for developing branchProfile
of Wechaty to SOLO NPM Module: MemoryCard
Map
-like, the difference is that MemoryCard is all Async.No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/27 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
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