Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shiftcode/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.
https://github.com/shiftcode/dynamo-easy
aws dynamo dynamodb dynamodb-client expression-builder expressions fluent-api objectmapper odm orm serverless typescript typescript-decorators
Last synced: 8 days ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/shiftcode/dynamo-easy
- Owner: shiftcode
- License: mit
- Created: 2017-08-10T07:32:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-26T11:48:58.000Z (4 months ago)
- Last Synced: 2024-10-28T12:51:01.008Z (13 days ago)
- Topics: aws, dynamo, dynamodb, dynamodb-client, expression-builder, expressions, fluent-api, objectmapper, odm, orm, serverless, typescript, typescript-decorators
- Language: TypeScript
- Homepage: https://shiftcode.github.io/dynamo-easy/
- Size: 3.83 MB
- Stars: 206
- Watchers: 4
- Forks: 27
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dynamo-Easy
[![Travis](https://img.shields.io/travis/com/shiftcode/dynamo-easy.svg)](https://travis-ci.com/shiftcode/dynamo-easy)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![latest-release](https://img.shields.io/npm/v/@shiftcoders/dynamo-easy/latest.svg)]()
[![Coverage Status](https://coveralls.io/repos/github/shiftcode/dynamo-easy/badge.svg?branch=master)](https://coveralls.io/github/shiftcode/dynamo-easy?branch=master)
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors)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](https://www.shiftcode.ch).
## Show me some code
```typescript
import { Model, PartitionKey, DynamoStore } from '@shiftcoders/dynamo-easy'@Model()
export class Person {
@PartitionKey()
id: string
name: string
yearOfBirth: number
}const personStore = new DynamoStore(Person)
personStore
.scan()
.whereAttribute('yearOfBirth').equals(1958)
.exec()
.then(res => console.log('ALL items with yearOfBirth == 1958', res))```
## Resources
- 🤓 Learn more visiting the [docs](https://shiftcode.gitbook.io/dynamo-easy)
- 📖 Checkout the technical API documentation [api docs](https://shiftcode.github.io/dynamo-easy/)
- 🚀 Check the running sample on [StackBlitz](https://stackblitz.com/edit/dynamo-easy-node-sample)
- [demo git repository](https://github.com/shiftcode/dynamo-easy-demo)## Credits
- [typescript-library-starter](https://github.com/alexjoverm/typescript-library-starter) - Starter project which helps creating a TypeScript library project
- [vogels](https://github.com/ryanfitz/vogels) - To get an idea on how to build the fluent api
- [typestore](http://densebrain.github.io/typestore/) - Inspiration on how to implement the model decorators## Contributors
Made with :heart: by [@michaelwittwer](https://github.com/michaelwittwer) and all these wonderful contributors ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
Michael Wittwer
🤔 💻 ⚠️ 📖
Simon Mumenthaler
🤔 💻 ⚠️ 📖
Michael Lieberherr
💻 📖 ⚠️This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!