This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

pagerank

2.0.2 • Public • Published

No longer Functional

Google removed public access to PageRank scores, so this library is no longer functional.

Old description, from when it worked

Tool for finding the Google PageRank of a given url. Can be used as a node module or a cli command when installed with -g.

Build Status

Installation

npm install --save pagerank

Usage

var getPageRank = require('pagerank');
 
// pageRank will either be a number or null
getPageRank('http://example.com/', function(error, pageRank) {
    console.log(error, pageRank);
});

Breaking changes:

  • Starting with version 1.3, pagerank will return/emit an error event when a non-200 status code is received from Google. (Previously it gave a null pagerank, but no error.)
  • Starting with version 2.0, pagerank is no longer a readable stream / event emitter, it can only be used via callbacks.

Or, install it globally

npm install -g pagerank

and use it on the commandline:

    pagerank http://example.com/

Readme

Keywords

Package Sidebar

Install

npm i pagerank

Weekly Downloads

10

Version

2.0.2

License

MIT

Last publish

Collaborators

  • nfriedly