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

@vulcancreative/serverless-storage

v1.4.3

Published

Serverless plugin defining DynamoDB and S3 storage primitives; like localStorage but better

Downloads

215

Readme

Serverless Storage, for Framework

Serverless Storage

serverlessStorage is a backend key/value library (similar to localStorage or sessionStorage), which uses a combination of DynamoDB and S3 to store data blobs, greatly simplifying database connectivity in a serverless environment.

Installation

To install this plugin, you can use serverless plugin install, or you can use yarn or npm.

With Serverless

serverless plugin install -n @vulcancreative/serverless-storage

Make sure you have serverless-storage in your plugin list:

plugins:
  - "@vulcancreative/serverless-storage"

With Yarn

yarn add --dev @vulcancreative/serverless-storage

then you need to manually add the plugin to your serverless.yml file:

plugins:
  - "@vulcancreative/serverless-storage"

With npm

npm install --save-dev @vulcancreative/serverless-storage

then you need to manually add the plugin to your serverless.yml file:

plugins:
  - "@vulcancreative/serverless-storage"

Configuration

Put these variables in your serverless.yml file:

provider:
  environment:
    STORAGE_DEFAULT_REGION: us-east-1 # update this with the region you want
    STORAGE_BUCKET_NAME: "${self:custom.serverlessStorage.bucketName}"
    STORAGE_TABLE_NAME: "${self:custom.serverlessStorage.bucketName}"
  iam:
    role:
      statements:
        - Effect: "Allow"
          Action:
            - "dynamodb:CreateTable"
            - "dynamodb:DeleteItem"
            - "dynamodb:DeleteTable"
            - "dynamodb:DescribeTable"
            - "dynamodb:GetItem"
            - "dynamodb:PutItem"
            - "dynamodb:Query"
            - "iam:PassRole"
            - "kms:CreateGrant"
            - "kms:Decrypt"
            - "kms:DescribeKey"
            - "kms:Encrypt"
            - "kms:GenerateDataKey"
            - "kms:RevokeGrant"
            - "s3:*"
          Resource: "*"

custom:
  serverlessStorage:
    bucketName: '' # update this with the name of your bucket
    tableName: '' # update this with the name of your table

Basic Usage

Saving data

import { serverlessStorage } from "@vulcancreative/serverless-storage";

const myTable = process.env.STORAGE_TABLE_NAME;
//user part is partition key
//my-user-id is sort key
const myKey = "user:my-user-id";
const myValue = event;

const test = await serverlessStorage.putData(myKey, myValue, myTable);

Delete data

const myTable = process.env.STORAGE_TABLE_NAME;
const myKey = "user:my-user-id";
const data = await serverlessStorage.removeData(myKey, myTable)

Check if key exists:

const myTable = process.env.STORAGE_TABLE_NAME;
const myKey = "user:my-user-id";
await serverlessStorage.hasData(myKey, myTable)

Get item:

const myTable = process.env.STORAGE_TABLE_NAME;
const myKey = "user:my-user-id";
const data = await serverlessStorage.getData(myKey, myTable)

Example Project

Example implementation for this project can be found here

Sponsors

Financing of this project's development is primarily sponsored by Vulcan Creative, a boutique digital product firm and Kilo, Social Media for the Antisocial.