| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
NodeJS SDK for interacting with Cyclic.sh app AWS DynamoDB databases.
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.
npm install @cyclic.sh/dynamodb
Credentials are required only for connecting to the database from local and expire after one hour, don't add them to an environment configuration.
process.env.CYCLIC_DB = 'your-url-subdomainCyclicDB'
const db = require('@cyclic.sh/dynamodb')// 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": "animals",
"key": "luna",
"props": {
"updated": "2022-03-23T13:02:12.702Z",
"created": "2022-03-23T12:32:02.526Z",
"color": "orange",
"type": "cat"
},
"$index": [
"color"
]
}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:
Fragments objects look just like items but give you a way to better organize your data with higher query performance.
let users = db.collection('users')
await users.item('mike')
.fragment('work').set({
company: 'cyclic'
})
let mikes_work = await users.item('mike').fragment('work').get()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.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()| Back | FazBrowse Home | New Git URL |