alsdkjasdlkja
alsdkjasdlkja

Reputation: 1298

DynamoDB wrapper for Node.js

What is the best npm library for dynamodb? There are quite a few on npm.

Right now my production application is running with a mongodb and mongoose.

Upvotes: 2

Views: 2584

Answers (2)

Ashok JayaPrakash
Ashok JayaPrakash

Reputation: 2283

Now things are becoming simple in Dynamodb using schema based AWS dynamodb data mapper library in Node.js For more details, have a look on following aws package.

Data Mapper with annotation

Data Mapper package for Javascript

Advantages of using Amazon Data mapper library

  1. Library take cares of Data marshaling
  2. Schemas will be mapped to Javascript class entities
  3. Similar to ORM
  4. Developed by Amazon

Upvotes: 6

RodH257
RodH257

Reputation: 3632

There's a couple of good ones:

vogels and dynamite

I'm using Vogels in my app at the moment, I like that it gives an extra layer of protection over your database via a Joi Schema, though it's not maintained as actively as you might like.

Dynamite is promise based and built by Medium, so it's worth a look as well.

Upvotes: 2

Related Questions