https://github.com/codenameyau/gsearch
:package: Node.js Google search suggestions
https://github.com/codenameyau/gsearch
Last synced: about 1 year ago
JSON representation
:package: Node.js Google search suggestions
- Host: GitHub
- URL: https://github.com/codenameyau/gsearch
- Owner: codenameyau
- License: mit
- Created: 2015-11-22T06:19:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-23T00:38:40.000Z (over 10 years ago)
- Last Synced: 2025-03-26T09:19:14.438Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gsearch
- Size: 10.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gsearch
[](https://www.npmjs.org/package/gsearch)
[](https://github.com/codenameyau/gsearch/blob/master/LICENSE)
Google autocomplete suggestions. Supports google and youtube search.
**Installation**
```
npm install gsearch --save
```
## Examples
More detailed examples can be found in the [example folder](https://github.com/codenameyau/gsearch/tree/master/example).
```javascript
'use strict';
var gsearch = require('gsearch');
gsearch.suggest('cats', function(error, data, res) {
console.log(data);
});
```