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
Memory Card is an Easy to Use Key/Value Store Implements ES6 Map with Async API in Distribution Scenarios.
npm install memory-card-lab
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (57.24%)
JavaScript (38.27%)
Shell (4.49%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
5 Stars
189 Commits
3 Forks
2 Watchers
1 Branches
2 Contributors
Updated on Jun 12, 2023
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
Published on
Feb 25, 2023
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
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 binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/27 approved changesets -- 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
security policy file not detected
Details
Reason
project is not fuzzed
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 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