Is there a good object mapper for Amazons dynamodb(through aws sdk) which can be used in nodejs?

前端 未结 6 1778
难免孤独
难免孤独 2021-02-01 03:07

Maybe the question does not apply to dynamoDB due to it not being Relational Db. However, I\'m looking for a good object mapper which can be used in nodejs and aws sdk to map e

6条回答
  •  心在旅途
    2021-02-01 03:17

    If you are looking for schema:

    • https://github.com/clarkie/dynogels (well supported forked from vogels which has been abandoned)
    • https://github.com/automategreen/dynamoose (inspired by Mongoose)

    If you are looking for something to throw javascript objects (even circular graphs) to:

    • https://github.com/aaaristo/dyngodb (alpha)
    • https://github.com/aaaristo/angular-gson-express-dyngodb

    dyngodb has experimental support for full-text search, and transactions too.

    Both are based on aws-sdk.

提交回复
热议问题