github-avatar-url

Get github's avatar URL either by `username` or `email`.

MIT License

Downloads
14
Stars
8
Committers
2

github-avatar-url Build Status

Get github's avatar URL either by username or email.

Install

$ npm install --save github-avatar-url

Usage

var githubAvatarUrl = require('github-avatar-url');

githubAvatarUrl('hemanth', {token:'foo'})
.then(console.log)
.catch(console.error)

githubAvatarUrl('[email protected]', {token:'foo'})
.then(console.log)
.catch(console.error)

API

githubAvatarUrl(input, [token])

input

Required Type: string

Either email or username

token

Type: string

GitHub access token.

Can be overriden globally with the GITHUB_TOKEN environment variable.

License

MIT © Hemanth.HM