1.0.2 • Published 7 years ago

gravator v1.0.2

Weekly downloads
17
License
MIT
Repository
github
Last release
7 years ago

Install

$ npm install --save gravator

Usage

  • username of a gravatar user is always foo@example.com
'use strict';

const gravator = require('gravator');

gravator('username', 'options').then(res => {
	console.log(res);
	// {opts: 'data'}
});

gravator('foo', 'hash').then(res => {
	console.log(res);
	// {opts: 'foo'}
})

API

gravator(username, options)

username

Type: string

options

Type: string

Options:

  • id

Example

gravator('matt', 'id').then(res => {
	console.log(res);
	// // {opts: '5'}
});
  • hash

  • requestHash

  • profileUrl

  • preferredUsername

  • thumbnailUrl

  • photos

  • name

  • ims

  • displayName

  • aboutMe

  • currentLocation

  • emails

  • accounts

  • urls

Related

License

MIT © Rishi Giri