Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/isayme/google-pr
- Owner: isayme
- License: mit
- Created: 2014-03-17T06:09:21.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-23T15:47:22.000Z (about 9 years ago)
- Last Synced: 2024-11-16T08:19:55.949Z (about 1 month ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
}
});
```