Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbkaplun/node-googlecustomsearch
Rate-limited Google Custom Search wrapper using promises (DEPRECATED)
https://github.com/dbkaplun/node-googlecustomsearch
Last synced: 28 days ago
JSON representation
Rate-limited Google Custom Search wrapper using promises (DEPRECATED)
- Host: GitHub
- URL: https://github.com/dbkaplun/node-googlecustomsearch
- Owner: dbkaplun
- Created: 2013-07-12T00:54:10.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-03T17:35:48.000Z (over 9 years ago)
- Last Synced: 2024-10-14T16:11:41.626Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##DEPRECATED!
Use [Google's official NodeJS API client](https://github.com/google/google-api-nodejs-client) instead. See [here](https://github.com/google/google-api-nodejs-client/blob/master/examples/customsearch.js) for example usage.
node-googlecustomsearch
=======================Rate-limited Google Custom Search wrapper using promises
Installation
------------npm install googlecustomsearch
Usage
-----var GoogleCustomSearch = require('googlecustomsearch');
var cse = new GoogleCustomSearch({/* key: ..., cx: ... */});
cse.search('node-googlecustomsearch').done(function (data) { console.log(data.items); });
cse.search('carl sagan', {siteSearch: 'wikipedia.org'});