Skip to content

Commit dd40d0d

Browse files
committed
initial work to add config
1 parent 735a465 commit dd40d0d

7 files changed

+139
-94
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
## Changelog
3+
4+
### v2.0.0
5+
6+
You are now able to pass configuration options to the library. Notably, you are able to pass options to the [AWS.DynamoDB.DocumentClient](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html#constructor-property) constructor, for example if you want to run against a [Dynamodb Local](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html) instance while developing. Allowing options to be passed means that the wrapper now has to be configured before use. Previously you could just use the wrapper directly:
7+
8+
```js
9+
const clientWrapper = require('dynamodb-doc-client-wrapper');
10+
// clientWrapper is good to go
11+
```
12+
13+
Now it is a factory function and so needs to be invoked before use. This means that you will almost certainly want to add a file that creates an instance of the wrapper, configured how you see fit, and that then exports the configured instance. You would then require this file wherever in your service you need to access Dynamodb:
14+
15+
```js
16+
const clientWrapper = require('dynamodb-doc-client-wrapper');
17+
exports = clientWrapper() // <-- can now pass config options here
18+
```

README.md

+65-44
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A wrapper around the AWS DynamoDB DocumentClient class that handles
44
building complete result sets from the `query`, `scan` and `batchGet`
5-
methods.
5+
methods, returning the results as Promises.
66

77
[![npm version](https://badge.fury.io/js/dynamodb-doc-client-wrapper.svg)](https://badge.fury.io/js/dynamodb-doc-client-wrapper)
88
[![Codeship Status for stevejay/dynamodb-doc-client-wrapper](https://app.codeship.com/projects/d832c8d0-a77d-0134-c8f7-7eca77d71521/status?branch=master)](https://app.codeship.com/projects/191146)
@@ -13,21 +13,68 @@ methods.
1313

1414
[![NPM](https://nodei.co/npm/dynamodb-doc-client-wrapper.png)](https://nodei.co/npm/dynamodb-doc-client-wrapper/)
1515

16-
## Install
16+
## Installation
1717

1818
```
1919
$ npm install --save dynamodb-doc-client-wrapper
2020
```
21+
or
22+
```
23+
$ yarn add dynamodb-doc-client-wrapper
24+
```
2125

2226
You also need to have the `aws-sdk` package available as a peer dependency. When running AWS Lambda functions on AWS, that package is already installed; you can install it as a dev dependency so it is available locally when testing.
2327

2428
## Usage
2529

26-
### Query
30+
### Configuration
31+
32+
You should create one client wrapper instance in a file that you then require where needed elsewhere in your service. If you do not need to configure the wrapper, you can create this basic file...
2733

2834
```js
2935
const clientWrapper = require('dynamodb-doc-client-wrapper');
36+
exports = clientWrapper()
37+
```
38+
39+
... and then require it as needed:
40+
41+
```js
42+
const dynamodbClient = require('./path/to/the/file/above')
3043

44+
// later in a function in this file...
45+
const response = yield dynamodbClient.query({
46+
TableName: 'MyTable',
47+
KeyConditionExpression: 'tagType = :tagType',
48+
ExpressionAttributeValues: { ':tagType': 'audience' },
49+
ProjectionExpression: 'id, label'
50+
});
51+
```
52+
53+
If you need to configure the wrapper, you can create a file similar to this one:
54+
55+
```js
56+
const clientWrapper = require('dynamodb-doc-client-wrapper');
57+
const config = {
58+
dynamodb: {
59+
region: 'localhost',
60+
endpoint: 'http://localhost:8000'
61+
}
62+
}
63+
exports = clientWrapper(config)
64+
```
65+
66+
The options that you can pass in the config object are:
67+
68+
| Option | Description | Default Value |
69+
| ------------- | ------------- | ------------- |
70+
| dynamodb | An [AWS.DynamoDB.DocumentClient](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html#constructor-property) config object | `null` |
71+
| notFoundMsg | The message of the error thrown when a `get` or `batchGet` request returns a 404 response. | '[404] Entity Not Found' |
72+
73+
### API
74+
75+
#### Query
76+
77+
```js
3178
const response = yield clientWrapper.query({
3279
TableName: 'MyTable',
3380
KeyConditionExpression: 'tagType = :tagType',
@@ -42,11 +89,9 @@ The response will have all matching items, even if the query
4289
had to be done in multiple takes because of the limit
4390
on total response size in DynamoDB.
4491

45-
### QueryBasic
92+
#### QueryBasic
4693

4794
```js
48-
const clientWrapper = require('dynamodb-doc-client-wrapper');
49-
5095
const response = yield clientWrapper.queryBasic({
5196
TableName: 'MyTable',
5297
KeyConditionExpression: 'tagType = :tagType',
@@ -62,11 +107,9 @@ This is a simple pass-through wrapper around the
62107
you want access to the entire response object and
63108
you will manage getting all the results yourself.
64109

65-
### Scan
110+
#### Scan
66111

67112
```js
68-
const clientWrapper = require('dynamodb-doc-client-wrapper');
69-
70113
const response = yield clientWrapper.scan({
71114
TableName: 'MyTable',
72115
ProjectionExpression: 'id, label'
@@ -79,11 +122,9 @@ The response will have all matching items, even if the scan
79122
had to be done in multiple takes because of the limit
80123
on total response size in DynamoDB.
81124

82-
### ScanBasic
125+
#### ScanBasic
83126

84127
```js
85-
const clientWrapper = require('dynamodb-doc-client-wrapper');
86-
87128
const response = yield clientWrapper.scanBasic({
88129
TableName: 'MyTable',
89130
ProjectionExpression: 'id, label'
@@ -97,11 +138,9 @@ This is a simple pass-through wrapper around the
97138
you want access to the entire response object and
98139
you will manage getting all the results yourself.
99140

100-
### BatchGet
141+
#### BatchGet
101142

102143
```js
103-
const clientWrapper = require('dynamodb-doc-client-wrapper');
104-
105144
const response = yield clientWrapper.batchGet({
106145
RequestItems: {
107146
'Table1': {
@@ -134,13 +173,11 @@ exceeds the DynamoDB limit of 100 items, or if the limit
134173
on total response size in DynamoDB was exceeded.
135174

136175
An exception is thrown if any requested db item was not found. The
137-
exception message is '[404] Entity Not Found'.
176+
exception message by default is '[404] Entity Not Found'.
138177

139-
### BatchGetBasic
178+
#### BatchGetBasic
140179

141180
```js
142-
const clientWrapper = require('dynamodb-doc-client-wrapper');
143-
144181
const response = yield clientWrapper.batchGetBasic({
145182
RequestItems: {
146183
'Table1': {
@@ -157,11 +194,9 @@ This is a simple pass-through wrapper around the
157194
you want access to the entire response object and
158195
you will manage getting all the results yourself.
159196

160-
### Get
197+
#### Get
161198

162199
```js
163-
const clientWrapper = require('dynamodb-doc-client-wrapper');
164-
165200
const response = yield clientWrapper.get({
166201
TableName: 'MyTable',
167202
Index: { id: 1 }
@@ -171,13 +206,11 @@ const response = yield clientWrapper.get({
171206
```
172207

173208
An exception is thrown if the requested db item was not found. The
174-
exception message is '[404] Entity Not Found'.
209+
exception message by default is '[404] Entity Not Found'.
175210

176-
### TryGet
211+
#### TryGet
177212

178213
```js
179-
const clientWrapper = require('dynamodb-doc-client-wrapper');
180-
181214
const response = yield clientWrapper.tryGet({
182215
TableName: 'MyTable',
183216
Index: { id: 1 }
@@ -189,11 +222,9 @@ const response = yield clientWrapper.tryGet({
189222

190223
If the requested db item was not found then `null` is returned.
191224

192-
### GetBasic
225+
#### GetBasic
193226

194227
```js
195-
const clientWrapper = require('dynamodb-doc-client-wrapper');
196-
197228
const response = yield clientWrapper.getBasic({
198229
TableName: 'MyTable',
199230
Index: { id: 1 }
@@ -206,11 +237,9 @@ This is a simple pass-through wrapper around the
206237
`AWS.DynamoDB.DocumentClient.get` method, for when
207238
you want access to the entire response object.
208239

209-
### Put
240+
#### Put
210241

211242
```js
212-
const clientWrapper = require('dynamodb-doc-client-wrapper');
213-
214243
yield clientWrapper.put({
215244
TableName: 'MyTable',
216245
Item: { id: 1, name: 'a' }
@@ -220,11 +249,9 @@ yield clientWrapper.put({
220249
This is a simple pass-through wrapper around the
221250
`AWS.DynamoDB.DocumentClient.put` method.
222251

223-
### BatchWrite
252+
#### BatchWrite
224253

225254
```js
226-
const clientWrapper = require('dynamodb-doc-client-wrapper');
227-
228255
yield clientWrapper.batchWrite({
229256
RequestItems: {
230257
'Table1': [
@@ -240,11 +267,9 @@ but it takes care of batching up the writes so that
240267
a single request does not exceed the DynamoDB limits,
241268
and it resubmits unprocessed writes.
242269

243-
### BatchWriteBasic
270+
#### BatchWriteBasic
244271

245272
```js
246-
const clientWrapper = require('dynamodb-doc-client-wrapper');
247-
248273
yield clientWrapper.batchWriteBasic({
249274
RequestItems: {
250275
'Table1': [
@@ -257,11 +282,9 @@ yield clientWrapper.batchWriteBasic({
257282
This is a simple pass-through wrapper around the
258283
`AWS.DynamoDB.DocumentClient.batchWrite` method.
259284

260-
### Update
285+
#### Update
261286

262287
```js
263-
const clientWrapper = require('dynamodb-doc-client-wrapper');
264-
265288
yield clientWrapper.update({
266289
TableName: 'Table',
267290
Key: { HashKey : 'hashkey' },
@@ -272,11 +295,9 @@ yield clientWrapper.update({
272295
This is a simple pass-through wrapper around the
273296
`AWS.DynamoDB.DocumentClient.update` method.
274297

275-
### Delete
298+
#### Delete
276299

277300
```js
278-
const clientWrapper = require('dynamodb-doc-client-wrapper');
279-
280301
yield clientWrapper.delete({
281302
TableName: 'MyTable',
282303
Index: { id: 1 }

0 commit comments

Comments
 (0)