2
2
3
3
A wrapper around the AWS DynamoDB DocumentClient class that handles
4
4
building complete result sets from the ` query ` , ` scan ` and ` batchGet `
5
- methods.
5
+ methods, returning the results as Promises .
6
6
7
7
[ ![ npm version] ( https://badge.fury.io/js/dynamodb-doc-client-wrapper.svg )] ( https://badge.fury.io/js/dynamodb-doc-client-wrapper )
8
8
[ ![ 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.
13
13
14
14
[ ![ NPM] ( https://nodei.co/npm/dynamodb-doc-client-wrapper.png )] ( https://nodei.co/npm/dynamodb-doc-client-wrapper/ )
15
15
16
- ## Install
16
+ ## Installation
17
17
18
18
```
19
19
$ npm install --save dynamodb-doc-client-wrapper
20
20
```
21
+ or
22
+ ```
23
+ $ yarn add dynamodb-doc-client-wrapper
24
+ ```
21
25
22
26
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.
23
27
24
28
## Usage
25
29
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...
27
33
28
34
``` js
29
35
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' )
30
43
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
31
78
const response = yield clientWrapper .query ({
32
79
TableName: ' MyTable' ,
33
80
KeyConditionExpression: ' tagType = :tagType' ,
@@ -42,11 +89,9 @@ The response will have all matching items, even if the query
42
89
had to be done in multiple takes because of the limit
43
90
on total response size in DynamoDB.
44
91
45
- ### QueryBasic
92
+ #### QueryBasic
46
93
47
94
``` js
48
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
49
-
50
95
const response = yield clientWrapper .queryBasic ({
51
96
TableName: ' MyTable' ,
52
97
KeyConditionExpression: ' tagType = :tagType' ,
@@ -62,11 +107,9 @@ This is a simple pass-through wrapper around the
62
107
you want access to the entire response object and
63
108
you will manage getting all the results yourself.
64
109
65
- ### Scan
110
+ #### Scan
66
111
67
112
``` js
68
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
69
-
70
113
const response = yield clientWrapper .scan ({
71
114
TableName: ' MyTable' ,
72
115
ProjectionExpression: ' id, label'
@@ -79,11 +122,9 @@ The response will have all matching items, even if the scan
79
122
had to be done in multiple takes because of the limit
80
123
on total response size in DynamoDB.
81
124
82
- ### ScanBasic
125
+ #### ScanBasic
83
126
84
127
``` js
85
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
86
-
87
128
const response = yield clientWrapper .scanBasic ({
88
129
TableName: ' MyTable' ,
89
130
ProjectionExpression: ' id, label'
@@ -97,11 +138,9 @@ This is a simple pass-through wrapper around the
97
138
you want access to the entire response object and
98
139
you will manage getting all the results yourself.
99
140
100
- ### BatchGet
141
+ #### BatchGet
101
142
102
143
``` js
103
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
104
-
105
144
const response = yield clientWrapper .batchGet ({
106
145
RequestItems: {
107
146
' Table1' : {
@@ -134,13 +173,11 @@ exceeds the DynamoDB limit of 100 items, or if the limit
134
173
on total response size in DynamoDB was exceeded.
135
174
136
175
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'.
138
177
139
- ### BatchGetBasic
178
+ #### BatchGetBasic
140
179
141
180
``` js
142
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
143
-
144
181
const response = yield clientWrapper .batchGetBasic ({
145
182
RequestItems: {
146
183
' Table1' : {
@@ -157,11 +194,9 @@ This is a simple pass-through wrapper around the
157
194
you want access to the entire response object and
158
195
you will manage getting all the results yourself.
159
196
160
- ### Get
197
+ #### Get
161
198
162
199
``` js
163
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
164
-
165
200
const response = yield clientWrapper .get ({
166
201
TableName: ' MyTable' ,
167
202
Index : { id: 1 }
@@ -171,13 +206,11 @@ const response = yield clientWrapper.get({
171
206
```
172
207
173
208
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'.
175
210
176
- ### TryGet
211
+ #### TryGet
177
212
178
213
``` js
179
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
180
-
181
214
const response = yield clientWrapper .tryGet ({
182
215
TableName: ' MyTable' ,
183
216
Index : { id: 1 }
@@ -189,11 +222,9 @@ const response = yield clientWrapper.tryGet({
189
222
190
223
If the requested db item was not found then ` null ` is returned.
191
224
192
- ### GetBasic
225
+ #### GetBasic
193
226
194
227
``` js
195
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
196
-
197
228
const response = yield clientWrapper .getBasic ({
198
229
TableName: ' MyTable' ,
199
230
Index : { id: 1 }
@@ -206,11 +237,9 @@ This is a simple pass-through wrapper around the
206
237
` AWS.DynamoDB.DocumentClient.get ` method, for when
207
238
you want access to the entire response object.
208
239
209
- ### Put
240
+ #### Put
210
241
211
242
``` js
212
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
213
-
214
243
yield clientWrapper .put ({
215
244
TableName: ' MyTable' ,
216
245
Item: { id: 1 , name: ' a' }
@@ -220,11 +249,9 @@ yield clientWrapper.put({
220
249
This is a simple pass-through wrapper around the
221
250
` AWS.DynamoDB.DocumentClient.put ` method.
222
251
223
- ### BatchWrite
252
+ #### BatchWrite
224
253
225
254
``` js
226
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
227
-
228
255
yield clientWrapper .batchWrite ({
229
256
RequestItems: {
230
257
' Table1' : [
@@ -240,11 +267,9 @@ but it takes care of batching up the writes so that
240
267
a single request does not exceed the DynamoDB limits,
241
268
and it resubmits unprocessed writes.
242
269
243
- ### BatchWriteBasic
270
+ #### BatchWriteBasic
244
271
245
272
``` js
246
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
247
-
248
273
yield clientWrapper .batchWriteBasic ({
249
274
RequestItems: {
250
275
' Table1' : [
@@ -257,11 +282,9 @@ yield clientWrapper.batchWriteBasic({
257
282
This is a simple pass-through wrapper around the
258
283
` AWS.DynamoDB.DocumentClient.batchWrite ` method.
259
284
260
- ### Update
285
+ #### Update
261
286
262
287
``` js
263
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
264
-
265
288
yield clientWrapper .update ({
266
289
TableName: ' Table' ,
267
290
Key: { HashKey : ' hashkey' },
@@ -272,11 +295,9 @@ yield clientWrapper.update({
272
295
This is a simple pass-through wrapper around the
273
296
` AWS.DynamoDB.DocumentClient.update ` method.
274
297
275
- ### Delete
298
+ #### Delete
276
299
277
300
``` js
278
- const clientWrapper = require (' dynamodb-doc-client-wrapper' );
279
-
280
301
yield clientWrapper .delete ({
281
302
TableName: ' MyTable' ,
282
303
Index : { id: 1 }
0 commit comments