Serverless dynamodb client plugin
npm install serverless-dynamodb-clientserverless-dynamodb-client
=================================



This Serverless 0.5.x plugin help you to call AWS Dynamodb SDK without switching between different dynamodb instances, whether you work with Dynamodb local or online in AWS.
npm install --save serverless-dynamodb-client
var dynamodb = require('serverless-dynamodb-client');
var rawClient = dynamodb.raw; // returns an instance of new AWS.DynamoDB()
var docClient = dynamodb.doc; // return an instance of new AWS.DynamoDB.DocumentClient()
``