Skip to content

billiegoose/ghkeys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ghkeys

Obtain the PGP keys of your fellow Githubbers using the Github API

CLI usage

ghkeys takes a single argument, the github username, and outputs all the PGP keys (newline separated) on stdout.

npx ghkeys [github username] | gpg --import

JS API

const ghkeys = require('ghkeys')

ghkeys(username).then(keys => {
  for (let key of keys) {
    // do something with the key
    console.log(key)
  }
})

About

Obtain the PGP keys of your fellow Githubbers using the Github API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published