parshap / pageinfo

Get information (title, images, etc.) about a HTML document

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Get information (title, images, etc.) about a HTML document

License:Other


Languages

Language:JavaScript 100.0%