Jie Ma
Results
2
issues of
Jie Ma
Is there any way that I can set up the header of response for some doctypes?
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));...