@cyclic.sh/dynamodb
TypeScript icon, indicating that this package has built-in type declarations

0.0.35 • Public • Published

@cyclic.sh/dynamodb

NodeJS SDK for interacting with Cyclic.sh app AWS DynamoDB databases.

Discord CI semantic-release: angular

npm (scoped) node-current (scoped) npm bundle size (scoped) @cyclic.sh/dynamodb

Together with the Cyclic.sh DynamoDB indexing strategy and data model, the SDK simplifies the DynamoDB interface and enables collection organization of records, queries, and data scheme discovery, among other features.

We use semantic release for versioning so take note of version numbers.

Prerequisites

  • A Cyclic.sh app with database enabled
  • For use on local:
    • AWS credentials set in environment (available on an app's database tab)

Getting started

  1. Install
    npm install @cyclic.sh/dynamodb
    
  2. Copy the temporary credentials from the Cyclic.sh console and set them in the shell environment where your code is running.

Credentials are required only for connecting to the database from local and expire after one hour, don't add them to an environment configuration.

  1. Set the database name as an environment variable before requiring the SDK - this can be added to environment configurations.
    process.env.CYCLIC_DB = 'your-url-subdomainCyclicDB'
    const db = require('@cyclic.sh/dynamodb')

Example

// example.js
const CyclicDB = require('@cyclic.sh/dynamodb')
const db = CyclicDB('your-table-name')

const run = async function(){
    let animals = db.collection('animals')

    // create an item in collection with key "leo"
    let leo = await animals.set('leo', {
        type:'cat',
        color:'orange'
    })

    // get an item at key "leo" from collection animals
    let item = await animals.get('leo')
    console.log(item)
}
run()

Collection Items

{
  "collection": "animals",
  "key": "luna",
  "props": {
    "updated": "2022-03-23T13:02:12.702Z",
    "created": "2022-03-23T12:32:02.526Z",
    "color": "orange",
    "type": "cat"
  },
  "$index": [
    "color"
  ]
}

Fragments

With the Cyclic.sh data model, items can have fragments. These can be thought of as children or attachments to items.

Another way to think of fragments is by thinking of an item itself as its own collection of other items that are stored closely together.

An example use case for a user record would be something like:

  • item user: name, last name, id
    • fragment home: address, city
    • fragment work: company name, position, work address

Fragments objects look just like items but give you a way to better organize your data with higher query performance.

Example:

let users = db.collection('users')

await users.item('mike')
        .fragment('work').set({
            company: 'cyclic'
        })

let mikes_work = await users.item('mike').fragment('work').get()

TTL - Time To Live

You optionally may set a TTL for any item. The TTL is the UNIX seconds timestamp when the item should expire.

The TTL setting passes through to the DynamoDB TTL setting. The expiration is only approximate within a few minutes.

Example

// example.js
const CyclicDB = require('@cyclic.sh/dynamodb')
const db = CyclicDB('your-table-name')

const run = async function(){
    let animals = db.collection('animals')

    // create an item in collection with key "leo"
    let leo = await animals.set('leo', {
        type:'cat',
        color:'orange',
        ttl: Math.floor(Date.now() / 1000) + 3
    })

    // get an item at key "leo" from collection animals
    let item = await animals.get('leo')
    console.log(item)

    await new Promise(resolve => setTimeout(resolve, 5000));
    
    item = await animals.get('leo')
    console.log(item)
}
run()

Dependents (2)

Package Sidebar

Install

npm i @cyclic.sh/dynamodb

Weekly Downloads

145

Version

0.0.35

License

MIT

Unpacked Size

38.9 kB

Total Files

23

Last publish

Collaborators

  • seekayel
  • korostelevm