Reputation: 1298
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
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 package for Javascript
Advantages of using Amazon Data mapper library
Upvotes: 6
Reputation: 3632
There's a couple of good ones:
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