2.0.2 • Published 9 years ago
pagerank v2.0.2
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.
Installation
npm install --save pagerankUsage
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,
pagerankwill return/emit an error event when a non-200 status code is received from Google. (Previously it gave anullpagerank, but no error.) - Starting with version 2.0,
pagerankis no longer a readable stream / event emitter, it can only be used via callbacks.
Or, install it globally
npm install -g pagerankand use it on the commandline:
pagerank http://example.com/