Node.js - kv.set()
This is reference documentation for the Nitric Node.js SDK. To learn about Key/Value Stores in Nitric start with the Key/Value Stores docs.
Store a key value pair in a key value store.
import { kv } from '@nitric/sdk'const profiles = kv('profiles').allow('set')await profiles.set('profile-1a2b3c', { name: 'John Smith' })
Parameters
- Name
key
- Required
- Required
- Type
- string
- Description
The key that references value.
- Name
value
- Required
- Required
- Type
- object
- Description
A json serializable object that is stored as the value.
Examples
Set a key value pair
import { kv } from '@nitric/sdk'const profiles = kv('profiles').allow('set')await profiles.set('profile-1a2b3c', { name: 'John Smith' })
Last updated on Apr 3, 2025