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

@mindpointgroup/raziel

v2.4.2

Published

A light weight, async/await abstraction for DynamoDB.

Downloads

2

Readme

SYNOPSIS

A light weight, async/await abstraction for DynamoDB.

USAGE

AS A LIBRARY

npm install mindpointgroup/raziel

AS A CLI

npm install mindpointgroup/raziel -g

CONSTRUCTOR

Create a constructor and configure it.

const Database = require('dynamodb')
const db = new Database({ region: 'us-west-2' })

TABLES

Create or open a table. The optional options object may include...

const options = {
  encrypted: true || false,
  streaming: 'NEW_IMAGE' || 'OLD_IMAGE' || 'NEW_AND_OLD_IMAGES' || 'KEYS_ONLY',
  createIfNotExists: true || false,
  ttl: true || false
}

const { err, table } = await db.open('foo', options)

PUT

Put a key/value.

const { err } = await table.put(['a', 'a'], { foo: 100 })

A key is input as an array. The first item in the array is the partition and the rest of the items are eventually concatenated to form the range. The partition is like a grouping of keys. Keys are sorted lexicographically and can be queried or looked up.

You can optionally provide more arguments that will be used as attributes.

const attr1 = { test: { S: 'Foo' } }
const { err } = await table.put(['a', 'a'], value, attr1)

TTL

An object literal can be provided as the second positional argument. This is where a TTL (time to live) value can be specified. When specified, the item will be deleted from the database if the duration specified is less than the current time.

For example the following put operation will add an item to the database which will be removed after 1 second.

const { err } = await table.put(['a', 'a'], { ttl: '+1s' }, { foo: 100 })

See this repo for ttl units of measure.

GET

Get a key/value

const { err, value } = await table.get(['a', 'b'])
assert(value === { foo: 100 })

GET MULTIPLE VALUES AT ONCE

Specify an array of keys as the first argument to the get method.

If a requested item does not exist, it is not returned in the result. Requests for nonexistent items consume the minimum read capacity units according to the type of read (this is how the Dynamodb aws-sdk works).

Gets are limited to 100 keys at a time (specified in the aws api).

const { err, data } = await table.get([['a', 'a'], ['a', 'b']])

assert.deepEqual(data[0].key, ['a', 'a'])
assert.deepEqual(data[0].value, { foo: 100 })

DEL

Delete a key/value

const { err } = await table.del(['a', 'b'])

BATCH

Put and or delete multiple key/values. Use an array of objects. With type and key. If the type is put, you must specify value and you can also provide other attributes (like the put method).

const ops = [
  { type: 'put', key: ['a', 'a'], value: { foo: 100 } },
  { type: 'put', key: ['a', 'b'], value: { bar: 200 } },
  { type: 'put', key: ['b', 'a'], value: { baz: 300 }, someOtherAttribute: 1 },
  { type: 'del', key: ['a', 'c'] }
]
const { err } = await table.batch(ops)

QUERY

Get a range of keys and their values. This produces an iterator with a next method that is awaitable.

If the previous batch command was executed, there there were only three records in the database. Two events would be emitted by the following query.

const params = {
  key: ['a']
}

const iterator = table.query(params)

for await (const { key, value } of iterator) {
  console.log(key, value)
}

ADVANCED QUERIES

const iterator = table.query(
  `hkey = "z" AND begins_with(rkey, "a")`,
  `x = "b"`
)

In the above example, the first argument is the KeyConditionExpression, and the second argument is the FilterExpression. You don't need to specify the [ExpressionAttributeValues][eav] since thats already parsed out for you. Values are contained in double quotes and you can mitigate reserved words using an octothorpe (#).

LEGACY NODE VERSIONS

In node versions less than 10.1.x

const iterator = table.query({ key: ['a'] })

while (true) {
  const { err, key, value, done } = await iterator.next()

  if (done) break // only true when there is no more data
}

Working with local DynamoDB

If you would like to use DynamoDB Local you will want to set the following environment variables.

LOCAL_DYNAMO=true
LOCAL_DYNAMO_PORT=8000

LOCAL_DYNAMO_PORT is optional and defaults to 8000 which is the default port.

NOTE: This does not validate that a proper DynamoDB process is listenting on 8000 (or specified port).

Testing

Local Testing

npm run test

CircleCI Emulator (require the circleci CLI to be installed)

circleci local execute --job node-lambda -e AWS_ACCESS_KEY_ID=ABCDEF -e AWS_SECRET_ACCESS_KEY=GHIJKL
circleci local execute --job node-v8 -e AWS_ACCESS_KEY_ID=ABCDEF -e AWS_SECRET_ACCESS_KEY=GHIJKL
circleci local execute --job node-v10 -e AWS_ACCESS_KEY_ID=ABCDEF -e AWS_SECRET_ACCESS_KEY=GHIJKL

[eva]:https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Query.html#DDB-Query-request-ExpressionAttributeValues) or the [ExpressionAttributeNames](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Query.html#DDB-Query-request-ExpressionAttributeNames