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

1.11.0 • Public • Published

@purista/aws-secret-store

A secret store for using AWS Secrets Manager as storage.

const config = {
  region: 'us-east-1'
}

const store = new AWSSecretStore(config)

await store.setSecret('mySecret', 'value')

let value = await store.getSecret('mySecret')
console.log(value) // outputs: { mySecret: 'value' }

await store.removeSecret('mySecret')

value = await store.getSecret('mySecret')
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-secret-store

Homepage

purista.dev

Weekly Downloads

60

Version

1.11.0

License

ISC

Unpacked Size

20.5 kB

Total Files

28

Last publish

Collaborators

  • sebastianwessel