page-icon
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/page-icon package

0.4.0 • Public • Published

Page Icon

Build Status

A library to find the highest resolution website logo for a given url.

This a Javascript implementation of http://stackoverflow.com/a/22007642/5076225.

Installation

Requires Node.js >= 10.

$ npm install --save page-icon

Usage

const pageIcon = require('page-icon');

const URL = 'https://www.facebook.com/';
pageIcon(siteUrl)
    .then(function(icon) {
        // do things with icon object
        console.log(icon);
    })
    .catch(error => {
        console.error(error);
    });
});

Example Icon Object

{ 
    source: 'https://www.facebook.com/apple-touch-icon.png',
    name: 'www.facebook.com',
    data: <Buffer 89 50 4e ... >,
    size: 1779,
    ext: '.png',
    mime: 'image/png' 
}

Tests

$ npm test

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i page-icon

Weekly Downloads

1,301

Version

0.4.0

License

MIT

Unpacked Size

7 kB

Total Files

9

Last publish

Collaborators

  • jiahaog