0.1.1 • Published 7 years ago

github-related-emails v0.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

What does it do?

This module parses emails from the GitHub public user data. The result is sorted by relevance (number of occurrences an email appears).

The module returns a promise with an array containing emails via resolve() and usually, the first entry would be the user's email.

How to use

CLI

nodejs index.js --user franciskim

Module

const getRelatedEmails = require('github-related-emails')

getRelatedEmails('franciskim')
    .then(r => {
        console.log(r)
    })
    .catch(e => {
        console.error(e)
    })
    .then(() => {
        // do more stuff
    })
0.1.1

7 years ago

0.1.0

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago