PURISTA API / Modules / @purista/nats-state-store
Module: @purista/nats-state-store
A state store for using NATS (with JetStream) as storage.
Example
typescript
const config = {
port: 8222
}
const store = new NatsStateStore(config)
await store.setState('stateKey',{ myState: 'value' })
let value = await store.getState('stateKey')
console.log(value) // outputs: { stateKey: { myState: 'value' } }
await store.removeState('stateKey')
value = await store.getState('stateKey')
console.log(value) // outputs: undefined
Table of contents
Classes
Type Aliases
Variables
Type Aliases
NatsStateStoreConfig
Ƭ NatsStateStoreConfig: Prettify
<{ keyValueStoreName
: string
} & ConnectionOptions
& Partial
<KvOptions
>>
Defined in
nats-state-store/src/types/NatsStateStoreConfig.ts:4
Variables
puristaVersion
• Const
puristaVersion: "1.11.0"