Gathering detailed insights and metrics for @shiftcoders/dynamo-easy
Gathering detailed insights and metrics for @shiftcoders/dynamo-easy
Gathering detailed insights and metrics for @shiftcoders/dynamo-easy
Gathering detailed insights and metrics for @shiftcoders/dynamo-easy
DynamoDB client for NodeJS and browser with a fluent api to build requests. We take care of the type mapping between JS and DynamoDB, customizable trough typescript decorators.
npm install @shiftcoders/dynamo-easy
Typescript
Module System
Node Version
NPM Version
TypeScript (99.54%)
JavaScript (0.46%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
209 Stars
612 Commits
29 Forks
5 Watchers
27 Branches
7 Contributors
Updated on Jul 07, 2025
Latest Version
7.1.1
Package Id
@shiftcoders/dynamo-easy@7.1.1
Unpacked Size
1.13 MB
Size
171.89 kB
File Count
1,256
NPM Version
6.14.4
Node Version
12.22.12
Published on
Jan 26, 2024
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
1
2
25
A DynamoDB client which provides an easy to use fluent api to execute requests. It supports TypeScript decorators to define the necessary metadata for your models. You don't need to care about the mapping of JavaScript types to their DynamoDB types any more. We've got you covered.
Built with :heart: by shiftcode.
1import { Model, PartitionKey, DynamoStore } from '@shiftcoders/dynamo-easy' 2 3@Model() 4export class Person { 5 @PartitionKey() 6 id: string 7 name: string 8 yearOfBirth: number 9} 10 11const personStore = new DynamoStore(Person) 12 13personStore 14 .scan() 15 .whereAttribute('yearOfBirth').equals(1958) 16 .exec() 17 .then(res => console.log('ALL items with yearOfBirth == 1958', res)) 18
Made with :heart: by @michaelwittwer and all these wonderful contributors (emoji key):
Michael Wittwer 🤔 💻 ⚠️ 📖 | Simon Mumenthaler 🤔 💻 ⚠️ 📖 | Michael Lieberherr 💻 📖 ⚠️ |
This project follows the all-contributors specification. Contributions of any kind welcome!
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
all changesets reviewed
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
0 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 4
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
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
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
78 existing vulnerabilities detected
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