1.0.0 • Published 8 years ago
i-promise-page-metrics v1.0.0
i-promise-page-metrics
A node module for retrieving different page metrics for an URL
For those of you who want to get page metrics for different URLs. This module will supply you with Alexa, Google+ and Moz metrics.
Install
Install with npm
$ npm i-promise-page-metrics --saveUsage
const pageMetrics = require("i-promise-page-metrics");
pageMetrics.alexa(url)
.then((response) => {
//=> {globalRank: 1000, popularityAt: "United States", regionalRank: 200, backLinks: 5000}
});
pageMetrics.googleplus(url)
.then((response) => {
//=> {count: 66}
});
pageMetrics.moz(url)
.then((response) => {
//=> {da: 1, pa: 22, rank: 2, links: 100}
});Running tests
Install dev dependencies:
$ npm testContributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
License
Released under the MIT license.