1.0.2 • Published 5 years ago

ghkeys v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

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)
  }
})
1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago