3.0.33 • Published 2 months ago

typeorm-dynamodb v3.0.33

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

typeorm-dynamodb

This package adds DynamoDB support to TypeORM. It works by wrapping TypeORM. Supports Typeorm version 0.3+

To get started using NPM, you can use the following commands:

npm install --save typeorm-dynamodb

Initializing the datasource

In dynamodb we don't really "open" a connection. However, we will need to read in all the entities so TypeORM knows about them.

There are two easy ways to initialized TypeORM.

datasourceManager.open

import { datasourceManager } from 'typeorm-dynamodb'
import { User } from '../entities/user.ts'

const run = async () => {
    await datasourceManager.open({
        entities: [User],
        synchronize: false // true will attempt to create tables
    })
    // now you can read / write to dynamodb
}

datasourceInitializer ExpressJS middleware

import express from 'express'
import { datasourceInitializer, environmentUtils, pageableRoutes } from 'typeorm-dynamodb'
import { User } from '../entities/user'

const app = express()
app.use(datasourceInitializer({
    entities: [User],
    synchronize: environmentUtils.isLocal()
}))
app.use(pageableRoutes)
// ... continue with Express configuration

In the above example I am creating the database tables if NODE_ENV=local

Also see how I am passing in the entities. I've found this helps reduce the lambda cold start.

pageableRoutes ExpressJS middleware

This will automatically parse query string parameters "page", "size" and "sort" and populate a req.pageable object. You can pass pageable straight through to your findPage repository method to pull back a limited result set.

Create an Entity

import { Entity, PrimaryColumn, Column } from 'typeorm'
import { GlobalSecondaryIndex } from 'typeorm-dynamodb'

@Entity({ name: 'user' })
@GlobalSecondaryIndex({ name: 'ageIndex', partitionKey: 'age', sortKey: ['lastname','firstname'] })
export class User extends BaseEntity {
    @PrimaryColumn({ name: 'id', type: 'varchar' })
    id: string

    @Column({ name: 'firstname', type: 'varchar' })
    firstname: string

    @Column({ name: 'lastname', type: 'varchar' })
    lastname: string

    @Column({ name: 'age', type: 'varchar' })
    age: string
}

Create a Repository (old Typeorm 0.2 way)

import { EntityRepository } from 'typeorm'
import { PagingAndSortingRepository } from 'typeorm-repository'
import { User } from '../entities/user'

export class UserRepository extends PagingAndSortingRepository<User> {

}

Create a Repository (new Typeorm 0.3 way)

import { getRepository } from './datasource-manager'
import { DataSource } from 'typeorm/data-source/DataSource'

const repository = getRepository(User)

CRUD Service Example

import { User } from '../entities/user'
import { getRepository } from 'typeorm-dynamodb'

export class UserService {

    async get (id: string) {
        return getRepository(User).get(id)
    }

    async put (user: User) {
        await getRepository(User).put(user)
    }

    async delete (id: string) {
        await getRepository(User).delete({ id })
    }

    async findPage (criteria: any, pageable: Pageable) {
        const repository = getRepository(User)
        if (criteria.age) {
            return repository.findPage({
                index: 'ageIndex',
                where: {
                    age: criteria.age
                }
            }, pageable)
        }
        return repository.findPage({}, pageable)
    }
}

GlobalSecondaryIndex

Reading

In the User example the GlobalSecondaryIndex annotation allows you to use the dynamodb query method. It's extremely important to use an index whenever you are querying to avoid full table scans.

Writing

When new records are written to the database a column will be populated automatically that will store the value needed by the index. For example, the sort column ["lastname","firstname"] will automatically populate a column "lastname#firstname" when the record is saved to the database. Magic!

3.0.33

2 months ago

3.0.32

3 months ago

3.0.30

3 months ago

3.0.31

3 months ago

3.0.28

3 months ago

3.0.29

3 months ago

3.0.27

3 months ago

3.0.26

3 months ago

3.0.25

6 months ago

3.0.23

10 months ago

3.0.24

8 months ago

3.0.21

11 months ago

3.0.22

10 months ago

3.0.20

11 months ago

3.0.19

11 months ago

3.0.18

12 months ago

3.0.17

12 months ago

3.0.16

12 months ago

3.0.15

12 months ago

3.0.14

1 year ago

3.0.13

1 year ago

3.0.12

1 year ago

3.0.11

1 year ago

3.0.10

1 year ago

3.0.9

1 year ago

3.0.8

1 year ago

3.0.7

1 year ago

3.0.6

1 year ago

3.0.5

1 year ago

3.0.4

1 year ago

3.0.3

1 year ago

3.0.2

1 year ago

3.0.1

1 year ago

3.0.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago