Gathering detailed insights and metrics for electrodb-refactor-test
Gathering detailed insights and metrics for electrodb-refactor-test
Gathering detailed insights and metrics for electrodb-refactor-test
Gathering detailed insights and metrics for electrodb-refactor-test
npm install electrodb-refactor-test
Typescript
Module System
Node Version
NPM Version
57.1
Supply Chain
98.8
Quality
75.2
Maintenance
100
Vulnerability
99.3
License
JavaScript (42.69%)
TypeScript (40.16%)
MDX (15.75%)
Astro (0.85%)
CSS (0.53%)
Shell (0.03%)
Total Downloads
202
Last Day
1
Last Week
2
Last Month
10
Last Year
134
1,038 Stars
510 Commits
69 Forks
13 Watching
170 Branches
28 Contributors
Minified
Minified + Gzipped
Latest Version
0.0.1
Package Id
electrodb-refactor-test@0.0.1
Unpacked Size
516.85 kB
Size
88.11 kB
File Count
26
NPM Version
8.19.2
Node Version
18.12.1
Publised On
10 Oct 2023
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
100%
2
Compared to previous week
Last month
-9.1%
10
Compared to previous month
Last year
97.1%
134
Compared to previous year
2
ElectroDB is a DynamoDB library to ease the use of having multiple entities and complex hierarchical relationships in a single DynamoDB table.
Please submit issues/feedback or reach out on Twitter @tinkertamper.
ElectroDB's new website for Documentation is now live at www.ElectroDB.dev.
Try out and share ElectroDB Models, Services, and Single Table Design at electrodb.fun
ExpressionAttributeNames
, ExpressionAttributeValues
, and FilterExpressions
.ExpressionAttributeNames
, ExpressionAttributeValues
, and ConditionExpressions
.ExpressionAttributeNames
, ExpressionAttributeValues
, and UpdateExpressions
..find()
or .match()
methods to dynamically and efficiently query based on defined sort key structures.Entities
, Services
, Models
directly from the command line.Entities
, Services
, Models
for easier prototyping.Turn this
1tasks 2 .patch({ 3 team: "core", 4 task: "45-662", 5 project: "backend", 6 }) 7 .set({ status: "open" }) 8 .add({ points: 5 }) 9 .append({ 10 comments: [ 11 { 12 user: "janet", 13 body: "This seems half-baked.", 14 }, 15 ], 16 }) 17 .where(({ status }, { eq }) => eq(status, "in-progress")) 18 .go();
Into This
1{ 2 "UpdateExpression": "SET #status = :status_u0, #points = #points + :points_u0, #comments = list_append(#comments, :comments_u0), #updatedAt = :updatedAt_u0, #gsi1sk = :gsi1sk_u0", 3 "ExpressionAttributeNames": { 4 "#status": "status", 5 "#points": "points", 6 "#comments": "comments", 7 "#updatedAt": "updatedAt", 8 "#gsi1sk": "gsi1sk" 9 }, 10 "ExpressionAttributeValues": { 11 ":status0": "in-progress", 12 ":status_u0": "open", 13 ":points_u0": 5, 14 ":comments_u0": [ 15 { 16 "user": "janet", 17 "body": "This seems half-baked." 18 } 19 ], 20 ":updatedAt_u0": 1630977029015, 21 ":gsi1sk_u0": "$assignments#tasks_1#status_open" 22 }, 23 "TableName": "your_table_name", 24 "Key": { 25 "pk": "$taskapp#team_core", 26 "sk": "$tasks_1#project_backend#task_45-662" 27 }, 28 "ConditionExpression": "attribute_exists(pk) AND attribute_exists(sk) AND #status = :status0" 29}
No vulnerabilities found.
Reason
5 commit(s) and 12 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 14/30 approved changesets -- score normalized to 4
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
70 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-12-16
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