1.11.0 • Published 1 year ago

@purista/aws-config-store v1.11.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

@purista/aws-config-store

A config store for using AWS System Manager as storage.

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

1.11.0

1 year ago

1.10.8

1 year ago

1.10.7

1 year ago

1.10.5

1 year ago

1.10.4

1 year ago

1.10.3

1 year ago

1.10.2

1 year ago

1.10.6

1 year ago

1.10.1

1 year ago

1.10.0

1 year ago