Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fmarier/node-libravatar
obsolete version of the Libravatar node module
https://github.com/fmarier/node-libravatar
Last synced: 3 months ago
JSON representation
obsolete version of the Libravatar node module
- Host: GitHub
- URL: https://github.com/fmarier/node-libravatar
- Owner: fmarier
- Archived: true
- Created: 2011-10-16T10:38:53.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2019-09-22T16:49:21.000Z (over 5 years ago)
- Last Synced: 2024-08-01T12:35:29.439Z (6 months ago)
- Language: JavaScript
- Homepage: https://github.com/coloradocolby/node-libravatar
- Size: 39.1 KB
- Stars: 12
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.txt
Awesome Lists containing this project
- awesome-starred - fmarier/node-libravatar - obsolete version of the Libravatar node module (others)
README
# THIS REPO HAS BEEN SUPERSEDED BY https://github.com/coloradocolby/node-libravatar
# node-libravatar
Here is an easy way to make use of the federated [Libravatar](http://www.libravatar.org)
avatar hosting service from within your node.js applications. It is inspired by
[Emerson Macedo](http://codificando.com/)'s [Gravatar library](https://github.com/emerleite/node-gravatar).See the [project page](https://github.com/fmarier/node-libravatar) for the issue tracker and downloads.
[![Build Status](https://travis-ci.org/fmarier/node-libravatar.png)](https://travis-ci.org/fmarier/node-libravatar)
[![Dependencies Status](https://david-dm.org/fmarier/node-libravatar.png)](https://david-dm.org/fmarier/node-libravatar)
[![Dev Dependencies Status](https://david-dm.org/fmarier/node-libravatar/dev-status.png)](https://david-dm.org/fmarier/node-libravatar#info=devDependencies)## Instalation
To install using npm, simply do this:
$ npm install libravatar
[![NPM](https://nodei.co/npm/libravatar.png)](https://nodei.co/npm/libravatar/)
## Usage
To generate the correct avatar URL based on someone's email address, use the
following:var libravatar = require('libravatar');
libravatar.url({ email: '[email protected]', size: 96, default: 'mm', https: false },
function (error, avatar_url) {
console.log('');
});See the [Libravatar documentation](http://wiki.libravatar.org/api) for more
information on the special values for the "default" parameter.## License
Copyright (C) 2011, 2012 Francois Marier
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.