0.0.1 • Published 9 years ago

favorite v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

favorite

MIT License Build Status Code Climate NPM Downloads NPM Dependencies Code Documentation

Node.js library to get favicons.

Installation

Basic: npm install favorite

As Dependency: npm install favorite --save

Require in Node: var favorite = require('favorite');

Methods

get (String url, Function callback)

Returns the website's favicon.

Example:

favorite.get('https://nodejs.org', function (err, data) {
	console.log(err, data);
});
// null, 'https://nodejs.org/favicon.ico'
0.0.1

9 years ago