npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

unstorage-driver-aws-dynamodb

v1.0.2

Published

AWS DynamoDB driver for unstorage

Downloads

13

Readme

unstorage-driver-aws-dynamodb

AWS DynamoDB driver for unstorage.

This driver uses the DynamoDB table as a key value store. By default it uses the key as the table partition key and the value as content. This options can be changed using attributes.

Installation

# Using pnpm
pnpm add unstorage-driver-aws-dynamodb

# Using yarn
yarn add unstorage-driver-aws-dynamodb

# Using npm
npm install unstorage-driver-aws-dynamodb

Usage

Dependend on the target enviroment it will need @aws-sdk/client-dynamodb and @aws-sdk/lib-dynamodb in your project

npm i -D @aws-sdk/client-dynamodb @aws-sdk/lib-dynamodb
import { createStorage } from "unstorage";
import dynamoDBDriver from "unstorage/drivers/aws-dynamodb";

const storage = createStorage({
  driver: dynamoDBDriver({
    table: "my-persistent-storage", // required
    region: "us-east-1", // optional, retrieved via environment variables
    credentials: {
      // optional, retrieved by AWS SDK via environment variables
      accessKeyId: "xxxxxxxxxx", // DO NOT HARD-CODE SECRETS
      secretAccessKey: "xxxxxxxxxxxxxxxxxxxx", // DO NOT HARD-CODE SECRETS
    },
  }),
});

Persistent configuration usage:

import { createStorage } from "unstorage";
import dynamoDBDriver from "unstorage/drivers/aws-dynamodb";

const storage = createStorage({
  driver: dynamoDBDriver({
    table: "my-table-name", // required
    attributes: {
      key: "key", // optional, configure attributes name
      value: "value", // optional, configure attributes name
    },
  }),
});

Temporary configurations:

import { createStorage } from "unstorage";
import dynamoDbCacheDriver from "unstorage/drivers/aws-dynamodb";

const storage = createStorage({
  driver: dynamoDbCacheDriver({
    table: "my-table-name", // required
    attributes: {
      key: "key", // optional but recommended
      value: "value", // optional but recommended
      ttl: "ttl", // optional, configure attributes name
    },
    ttl: 300, // optional, values in seconds or 0 to disable
  }),
});

When ttl is set to a number greater than 0 the driver will add seconds to the current timestamp and set the TTL attribute. Otherwise removing the ttl option or setting it to 0 will disable this functionality.

The setItem method support an additional options which allows you to override the general ttl option:

await storage.setItem("key", "value", { ttl: 900 });

Since the DynamoDB items deletion is asynchronous the driver will check the validity of the TTL attribute before returning them from getItem and getKeys operations. This in order to ensure that no expired items will be returned.

Authentication:

The driver supports the default AWS SDK credentials.

The IAM role or IAM user that use the driver need the following permissions:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "dynamodb:GetItem",
        "dynamodb:PutItem",
        "dynamodb:Scan",
        "dynamodb:DeleteItem"
      ],
      "Resource": "arn:aws:dynamodb:*:*:table/my-table-name"
    }
  ]
}

Options:

  • table: The name of the DynamoDB table.
  • region: The AWS region to use.
  • credentials: The AWS SDK credentials object.
  • attributes: The key, value and TTL attributes mapping to table item attributes.
  • ttl: The number of seconds to add to the current timestamp to set the TTL attribute. Set to 0 to disable it.

Contribution

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Original Source

The original source code can be found at this GitHub Pull Request from Fabio Gollinucci.

License

Distributed under the "bsd-2-clause" License. See LICENSE.txt for more information.