@purista/aws-config-store v2.0.5
PURISTA API / @purista/aws-config-store
@purista/aws-config-store
A config store for using AWS System Manager as storage.
typescript
const config = {
region: 'us-east-1'
}
const store = new AWSConfigStore(config)
await store.setConfig('myConfig', 'value')
let value = await store.getConfig('myConfig')
console.log(value) // outputs: { myConfig: 'value' }
await store.removeConfig('myConfig')
value = await store.getConfig('myConfig')
console.log(value) // outputs: undefined
Visit purista.dev
Follow on Twitter @purista_js
Join the Discord Chat