Skip to content

raitucarp/get-suggestions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NPM

Build Status

Introduction

Get Google suggestion with 1 level deep (a-z, 0-9) with es6 promise. For example, with gardening as a keyword, it will fetch suggestions for:

  • gardening a
  • gardening b
  • ....
  • gardening z
  • gardening 1
  • gardening 2
  • ...
  • gardening 10

Since this library get 1 level deep suggestions, it will take longer to fetch than simple suggestion. See test.js for example

Install

npm install get-suggestions

Usage

const Suggestion = require('get-suggestions')
let s = new Suggestion("gardening")
s.get()
    .then(suggestions=> console.log(suggestions))
    .catch(err => console.error(err))

Documentation

new Suggestion(keyword)

Create new suggestion object

.simple(boolean)

Set suggestion keep simple, with no level depth.

.setKeyword(keyword)

Set keyword of suggestion.

.get()

Get suggestions data. Returns as promise object

.userAgent(ua)

Set user agent of request client. Default value is developer current browser.

.setMinimumTimeout(min)

Set minimum number of timeout to prevent blocked.

.setMaximumTimeout(max)

Set maximum number of timeout to prevent blocked.

TODO

  • Add (tor) proxy support.
  • More documentation
  • More method

License

MIT

About

Just another Google suggestion library for node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published