1.0.2 • Published 8 years ago

serp-keyword-statistics v1.0.2

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
8 years ago

# SERP keyword statistics

npm version

Eat a list of keywords (and optionnaly a google domain extension, as sauce), and return the number of google results plus the first link.

Return an array of objets as follow :

[
	{
		keyword: 'dandy',
		stat: '32 100 000',
		firstLink: 'https://fr.wikipedia.org/wiki/Dandy'
	},
	...
]

## Usage

const mod = require('./'),
    keywords = ['dandy', 'seo', 'dandy seo']

mod.keywordStats(keywords)
    .then(function (data) {
        console.log(data)
    })