• Stars
    star
    417
  • Rank 103,829 (Top 3 %)
  • Language
    JavaScript
  • Created almost 14 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Node.JS library to generate gravatar URLs

Build Status

Node.js Gravatar library

A library to generate Gravatar URLs in Node.js Based on gravatar specs - http://en.gravatar.com/site/implement/hash/ and http://en.gravatar.com/site/implement/images/

Dependencies

Runtime

  • Node 10+

Development/Tests

  • mocha
  • should.js

Installation

$ npm install gravatar

Usage

var gravatar = require('gravatar');

gravatar.url(email);
gravatar.url(email, options);
gravatar.url(email, options, protocol);

gravatar.profile_url(email);
gravatar.profile_url(email, options);
gravatar.profile_url(email, options, protocol);

Where:

  • email: The gravatar email
  • options: Query string options. Ex: size or s, default or d, rating or r, forcedefault or f. Additional options not passed as a query string: protocol (e.g. "http" or "https") and format (only for profile_url, e.g. "xml", "qr", by default it is "json") Should be passed as an object. Ex: {s: '200', f: 'y', d: '404'}
  • protocol Define if will use no protocol, http or https gravatar URL. Default is 'undefined', which generates URLs without protocol. True to force https and false to force http. It can also be set as protocol in options - see above.

Examples

var gravatar = require('gravatar');

var url = gravatar.url('[email protected]', {s: '200', r: 'pg', d: '404'});
//returns //www.gravatar.com/avatar/93e9084aa289b7f1f5e4ab6716a56c3b?s=200&r=pg&d=404

var unsecureUrl = gravatar.url('[email protected]', {s: '100', r: 'x', d: 'retro'}, false);
//returns http://www.gravatar.com/avatar/93e9084aa289b7f1f5e4ab6716a56c3b?s=100&r=x&d=retro

var secureUrl = gravatar.url('[email protected]', {s: '100', r: 'x', d: 'retro'}, true);
//returns https://s.gravatar.com/avatar/93e9084aa289b7f1f5e4ab6716a56c3b?s=100&r=x&d=retro

var httpUrl = gravatar.url('[email protected]', {protocol: 'http', s: '100'});
//returns http://www.gravatar.com/avatar/93e9084aa289b7f1f5e4ab6716a56c3b?s=100

var httpsUrl = gravatar.url('[email protected]', {protocol: 'https', s: '100'});
//returns https://s.gravatar.com/avatar/93e9084aa289b7f1f5e4ab6716a56c3b?s=100

var profile1 = gravatar.profile_url('[email protected]', {protocol: 'https'});
//returns https://secure.gravatar.com/93e9084aa289b7f1f5e4ab6716a56c3b.json

var profile2 = gravatar.profile_url('[email protected]', {protocol: 'http', format:'qr'});
//returns http://www.gravatar.com/93e9084aa289b7f1f5e4ab6716a56c3b.qr

CLI Usage

gravatar includes a simple command line interface. To use it, install globally:

npm i -g gravatar

gravatar -h
gravatar [email protected]

gravatar avatar -h
gravatar avatar [email protected]

gravatar profile -h
gravatar profile [email protected]

Running tests (3 ways)

$ npm test
$ mocha (installed global)
$ node_modules/mocha/bin/mocha

To-Do

Author

License:

(The MIT License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

node-database-cleaner

The simplest way to clean your database after tests
JavaScript
171
star
2

mongo-migrate

MongoDB Migration using shell
Shell
64
star
3

demeter

A Simple way to apply Law of Demeter to your Ruby objects
Ruby
47
star
4

tsuru-bluegreen

A blue-green deployment plugin for tsuru client
Python
34
star
5

node-gist

Node.JS Gist API
JavaScript
27
star
6

video_watch_progress

Track video playback watch progress and allow the users to return at the same point they leave.
Elixir
25
star
7

node-stopwatch

A managed stopwatch for Node.JS
JavaScript
13
star
8

mongox

MongoDB driver for Elixir
Elixir
12
star
9

braziljs-realtime-nodejs

Código apresentado no BrazilJS
JavaScript
11
star
10

node-rating

Node.JS Rating an Hit system
JavaScript
7
star
11

content-gateway-elixir

Elixir Content Gateway
Elixir
7
star
12

tesla_cache

CacheX middleware for Elixir Tesla HTTP Client
Elixir
6
star
13

rating

Node.JS Rating system - Based on Redis.
JavaScript
6
star
14

rubyconfbr-nodejs

Código NodeJS da apresentação feita na Rubyconf BR
JavaScript
5
star
15

mongox_ecto

MongoDB adapter for Ecto
Elixir
5
star
16

cafecomtom-nodejs

Código apresentado no Café com TOM
JavaScript
5
star
17

jbehave-br

Utilização dos termos em português para o Jbehave. Cenário, Dado, Quando, Então, E
Java
4
star
18

jbehave-i18n

Internationalization for Jbehave2
Java
4
star
19

jaiminho

A CLI tool for deployment notifications
Shell
4
star
20

tsuru-swap-cname

Swap cname between tsuru apps (plugin)
Python
3
star
21

docker-elixir-mysql-client

Elixir with Mysql Client. Useful for continuous integration
2
star
22

node-vapor.js

Node.JS integration with Vapor.js
JavaScript
2
star
23

planodasalvacaocombr

Site planodasalvacao.com.br
HTML
1
star
24

rubyconfbr-rubyonnode

Código Rails 3 da apresentação feita na Rubyconf BR
Ruby
1
star