gsearch

Node.js Google search suggestions

MIT License

Downloads
11
Stars
4
Committers
1

gsearch

Google autocomplete suggestions. Supports google and youtube search.

Installation

npm install gsearch --save

Examples

More detailed examples can be found in the example folder.

'use strict';

var gsearch = require('gsearch');
gsearch.suggest('cats', function(error, data, res) {
  console.log(data);
});