New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

workers-kv

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

workers-kv

Eventual-consistent key-value data storage based on Workers KV

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
0
Created
Source

workers-kv

Eventual-consistent key-value data storage based on Workers KV

npm i workers-kv

"A low-latency, high-throughput global data store perfect for configuration data, routing data, A/B testing configurations, and authentication tokens. Workers KV is best suited for read-heavy workloads."

https://developers.cloudflare.com/kv/

Usage

const KV = require('workers-kv')

const kv = new KV('<account-id>', '<token>')

// Create a Namespace (can also get, list, and remove Namespaces)
const ns = await kv.namespace.create('accounts')

// Instantiate the Namespace to write/read key-value pairs
const db = kv.from(ns.id)

// Write an entry
await db.put('/users/123', { name: '' })

// Read an entry
const user = await db.get('/users/123')

// List key-value pairs (there is a prefix filter and cursor paging)
const list = await db.list()

// Delete a key-value pair
await db.del('/users/123')

API (Namespaces)

kv = new KV(accountId, token)

Create a Workers KV Namespaces instance.

ns = await kv.namespace.create(title)

Create a Namespace.

Returns:

{
  id: String,
  title: String,
  supports_url_encoding: Boolean
}

ns = await kv.namespace.get(id)

Get a Namespace.

Returns the same as the create method.

await kv.namespace.remove(id)

Remove a Namespace.

ns = await kv.namespace.list([options])

List Namespaces.

Returns:

{
  result: Array, // [{ id, title, supports_url_encoding }, ...]
  info: Object, // { page, ... }
  next: Number // 0 or more (helper for paging)
}

Options:

{
  direction: String, // 'asc' or 'desc'
  order: String, // 'id' or 'title'
  page: Number, // Default is 1
  perPage: Number // Default is 20 (>=5 and <=100)
}

API (Key-Value pairs)

db = kv.from(id)

Returns a new KV instance, configured with the Namespace id.

await db.put(key, value, [options])

Write a key-value pair. Value will be stringified as JSON.

Options:

{
  metadata: Object,
  expiration: Number,
  expiration_ttl: Number, // Minimum is 60 seconds
  base64: Boolean // Indicate if value is base64 (e.g. file that can't be JSON)
}

value = await db.get(key)

Read a key-value pair. Value will be parsed as JSON.

Returns null if not found.

await db.del(key)

Delete a key-value pair.

list = await db.list([options])

Lists the keys of the Namespace.

Returns:

{
  result: Array, // [{ name, metadata, expiration }, ...]
  info: Object // { count, cursor }
}

Options:

{
  cursor: String,
  limit: Number, // Default is 1000 (>= 10 and <= 1000)
  prefix: String
}

API (Metadata)

metadata = await db.metadata.get(key)

Read the metadata associated with a key-value pair.

Returns null if not found or there is no metadata.

License

MIT

FAQs

Package last updated on 22 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts