npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wavo-cloud/aws-secrets-manager-helper

v0.4.0

Published

Wavo Cloud Infallible AWS Secrets Manager Helper

Readme

CircleCI codecov

wavo-cloud.aws-secrets-manager-helper

Wavo Cloud Infallible AWS Secrets Manager Helper

How To Use

To import it use

const {
  getClientSecretIds,
  getClientSecret,
  getAllClientSecrets,
  getSecretValue,
} = require('@wavo-cloud/aws-secrets-manager-helper')

To get a specific secret value call getSecretValue(SECRET_ID)

To get a list of clients and their respective CLIENT_IDs and SECRET_IDs call getClientSecretIds()

To get a specific client secret using their CLIENT_ID call getClientSecret(CLIENT_ID)

To get all client secrets call getAllClientSecrets()

Important Commands

Building the Dockerfile image

$ yarn image-build

Prettify the Source

$ yarn prettify

Start the Microservice

When using this option, node is passed the --inspect flag so you can inspect your code with the debugger of your choice. If your microservice is a worker or if you need it to block and wait for the debugger to connect use the "debug mode" instead.

$ yarn start

Dockerized version (using docker-compose):

$ yarn docker-start

Start the Microservice in Debug Mode

Important: when you run the microservice in debug mode, it is going to be started with node's --inspect-brk flag. This implies that the microservice will block and wait for a debugger to connect to port 5858 and resume code execution.

$ yarn debug

Dockerized version (using docker-compose):

$ yarn docker-debug

Running the Tests

Important: when you run the microservice in debug mode, it is going to be started with node's --inspect-brk flag. This implies that the microservice will block and wait for a debugger to connect to port 5858 and resume code execution.

$ yarn test

Dockerized version (using docker-compose):

$ yarn docker-test