github-avatar-url

2.0.0 • Public • Published

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('hemanth.hm@gmail.com', {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

Package Sidebar

Install

npm i github-avatar-url

Weekly Downloads

1

Version

2.0.0

License

MIT

Last publish

Collaborators

  • hemanth