1.0.1 • Published 10 years ago

pageinfo v1.0.1

Weekly downloads
3
License
Public Domain
Repository
-
Last release
10 years ago

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