Skip to content

Instantly share code, notes, and snippets.

View sinzin91's full-sized avatar

Tenzin Wangdhen sinzin91

View GitHub Profile
@sinzin91
sinzin91 / topkeywords.js
Created January 31, 2016 00:17 — forked from elliotbonneville/topkeywords.js
Find top keywords associated with a Google search with this Node.js application.
var request = require("request"),
cheerio = require("cheerio"),
url = "https://www.google.com/search?q=data+mining",
corpus = {},
totalResults = 0,
resultsDownloaded = 0;
function callback () {
resultsDownloaded++;