> For the complete documentation index, see [llms.txt](https://shiftcode.gitbook.io/dynamo-easy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shiftcode.gitbook.io/dynamo-easy/master.md).

# Introduction

�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 dynamo types any more. We got you covered.

{% code title="person.model.ts" %}

```typescript
import { Model, PartitionKey } from '@shiftcoders/dynamo-easy'

@Model()
export class Person {
  @PartitionKey()
  id: string
  name: string
  yearOfBirth: number
}

```

{% endcode %}

{% code title="looks-easy-right.snippet.ts" %}

```typescript
import { DynamoStore } from '@shiftcoders/dynamo-easy'
import { Person } from './models'

const personStore = new DynamoStore(Person)

personStore
  .scan()
  .whereAttribute('yearOfBirth').equals(1958)
  .exec()
  .then(res => console.log('ALL items with yearOfBirth == 1958', res))
```

{% endcode %}

{% hint style="info" %}
The library does not provide any operation to manage a table (API operations like 'createTable', 'describeTable', and more operations described [here](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html))
{% endhint %}

{% hint style="info" %}
Are you missing some information or found some wrong description? Please feel free to open an issue on our [github repo](https://github.com/shiftcode/dynamo-easy/issues).
{% endhint %}

## Developed with :heart: by [shiftcode.ch](https://www.shiftcode.ch)<img src="/files/-LYS8Xy-ofhqP2phs7Ky" alt="" data-size="line">&#x20;
