@purista/aws-config-store
TypeScript icon, indicating that this package has built-in type declarations

1.11.0 • Public • Published

@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

PURISTA - Typescript framework for IoT, microservices, and serverless | Product Hunt

Readme

Keywords

none

Package Sidebar

Install

npm i @purista/aws-config-store

Homepage

purista.dev

Weekly Downloads

80

Version

1.11.0

License

ISC

Unpacked Size

18.9 kB

Total Files

28

Last publish

Collaborators

  • sebastianwessel