nodecredstash icon indicating copy to clipboard operation
nodecredstash copied to clipboard

Results 1 nodecredstash issues
Sort by recently updated
recently updated
newest added

v2.0.2 code ``` const Credstash = require('nodecredstash'); const localAwsOpt = { region: 'ap-southeast-2', endpoint: "https://localhost.localstack.cloud:4566", }; const credstash = new Credstash({awsOpts: localAwsOpt}); credstash.getSecret({name: 'test'}) .then(secrets => console.log(secrets)) .catch(err => console.error(err));...