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 🙏

© 2024 – Pkg Stats / Ryan Hefner

bw-gpk

v2.1.0

Published

This CLI tool is to fetch the clipboard directly or text file then create ssh config file and load the private keys to the ssh-agent securely.

Downloads

200

Readme

bw-gpk

Bitwarden Get Private Key (bw-gpk) CLI tool is to fetch the clipboard directly or text file then create ssh config file and load the private keys to the ssh-agent securely.

Installation

To install bw-gpk, use npm:

npm install -g bw-gpk

Usage

  1. Create Bitwarden Note: Create a Bitwarden note with a friendly name. The note should contain SSH configuration and private key in the following format:

    Host hostname1
      Hostname <IP/FQDN>
      User <UserName>
        
    -----BEGIN OPENSSH PRIVATE KEY-----
    <PrivateKeyContents>
    -----END OPENSSH PRIVATE KEY-----
        
    # Comments are allowed
        
    Host hostname2
      Hostname <IP/FQDN>
      User <UserName>
        
    # At least one empty line between configurations
        
    Host hostname3
      Hostname <IP/FQDN>
      User <UserName>
        
    -----BEGIN OPENSSH PRIVATE KEY-----
    <PrivateKeyContents>
    -----END OPENSSH PRIVATE KEY-----
        

    NB: Please make sure that private keys are password less or unencrypted.

    You can use the following command to remove the passphrase from your private key

    ssh-keygen -p -f <PrivateKeyFile>
  2. Using bw-gpk: After creating the Bitwarden note, use the bw-gpk tool to load private keys into the SSH agent. Run the following command:

    # fetch the content from Clipboard
    bw-gpk
    # or fetch the content from local file
    bw-gpk <bw-note-path>

    Note: For clipboard use, ensure that you have copied the note form Bitwarden.

  3. List Hosts and IPs: To see the Host and IPs/Hostnames in the ssh config file run the command:

    bw-gpk hosts
  4. Clear keys and configs: After using the tool, securely delete the private keys from ssh-agent and delete the ssh configs with:

    bw-gpk clear

Example

Suppose you have a Bitwarden note named my-ssh-keys containing SSH configurations and private keys. To load these keys into the SSH agent, copy the node and then run:

bw-gpk

To securely delete the configs and private keys, run:

bw-gpk clear

License

bw-gpk is licensed under the MIT License.