https://github.com/miniarray/node-ego
Find your rank on Google and other search engines
https://github.com/miniarray/node-ego
Last synced: 4 months ago
JSON representation
Find your rank on Google and other search engines
- Host: GitHub
- URL: https://github.com/miniarray/node-ego
- Owner: miniArray
- License: mit
- Created: 2013-02-22T14:06:52.000Z (almost 13 years ago)
- Default Branch: develop
- Last Pushed: 2018-03-21T21:17:05.000Z (almost 8 years ago)
- Last Synced: 2025-03-20T08:41:44.306Z (10 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# node-ego
Find your rank on Google and other search engines.
## Getting Started
Install the module with: `npm install ego`
```coffeescript
ego = require 'ego'
ego.rank
phrase: "ebay"
domain: "ebay.com"
success: (result) ->
console.log "Google position: #{result.position}"
```
*output: "Google position: 1"*
## Examples
### Delay
Google will temporarily block searches if they suspect you're automating searches. You can specify a delay (in milliseconds) between each pagination to avoid this.
```coffeescript
ego.options.delay = 5000
# or
ego.rank
delay: 5000
phrase: "ebay"
domain: "ebay.com"
success: (result) ->
console.log "Google position: #{result.position}"
```
## Documentation
_(Coming soon)_
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
## Roadmap
* Incorporate bing/yahoo
## Release History
### v0.1.0
* now using node-google
## License
Copyright (c) 2013 Simon W. Jackson
Licensed under the MIT license.