pageinfo

1.0.1 • Public • Published

This module returns information about an HTML document located at the given URI. Currently the following information is available:

  • Title
  • Images (that meet size criteria)

GraphicsMagick

This module depends on GraphicsMagick being installed on the system. You can find installation instructions here or use your favorite package manager.

Usage

    var pageinfo = require("pageinfo");
 
    pageinfo("http://en.wikipedia.org/wiki/Fish", function(err, info) {
        if (err) throw err;
        console.log(info.title);
        console.log(info.images.length, "images found");
    });

Tests

Run tests with npm:

    npm test

Authors

Readme

Keywords

none

Package Sidebar

Install

npm i pageinfo

Weekly Downloads

0

Version

1.0.1

License

Public Domain

Last publish

Collaborators

  • parshap