Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/isayme/google-pr

a nodejs module to parse PR value of a specified domain.
https://github.com/isayme/google-pr

Last synced: 13 days ago
JSON representation

a nodejs module to parse PR value of a specified domain.

Awesome Lists containing this project

README

        

google-pr
=========
A nodejs module to parse google PR of a specified domain.

example
=======
```javascript
var gpr = require('google-pr');

gpr.query('google.com', function(err, val){
if (null != err) {
console.log(err);
} else {
console.log('PR : ' + val);
}
});
```