Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 789 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 789 Bytes

Gravatar

Yet another library for generating gravatar urls.

Why?

Because the other ones depend on jQuery or make assumptions I don't want like returning an image tag instead of a url.

Usage

gravatarjs is based on the standard Gravatar API, learn more here: https://en.gravatar.com/site/implement/images/

Generate a gravatar url

gravatar("[email protected]");

Specify options

  • size: Size of the image (Default 50)
  • rating: Rating of the image (Default 'g', Options: g, pg, r, x)
  • secure: Use https or http (Default false)
  • backup: Backup image if gravatar doesn't exist (Default: default)
gravatar("[email protected]", {size: 200, rating: "pg", backup: "retro", secure: true});