Skip to content
This repository was archived by the owner on Aug 18, 2022. It is now read-only.
/ dynamo-utils Public archive

Wrapper around the Dynamo Doc Client implementing standardized error handling

Notifications You must be signed in to change notification settings

TractorZoom/dynamo-utils

Repository files navigation

@tractorzoom/dynamo-utils

Commitizen friendly jest Prettier Renovate enabled semantic-release

Available Methods

Method: docClient(method, params)
parameter type description
method string any valid dynamo document client method
params object object params accepted by the corresponding dynamo document client method

How do I use? 🤔

Installation:
npm i @tractorzoom/dynamo-utils
Usage:
import { docClient } from '@tractorzoom/dynamo-utils';

export const putHandler = async () => {
    const params = {
        Table: 'MyTable',
        Item: { key: 'super awesome item' },
    };

    const response = await docClient('put', params);

    if (response.error) {
        return internalServerError(response.error);
    }

    return ok(response);
};

About

Wrapper around the Dynamo Doc Client implementing standardized error handling

Resources

Stars

Watchers

Forks

Packages

No packages published