Created
March 6, 2017 11:09
-
-
Save hiyosi/6a70caa9c4767eb36aafe50138ad5b70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Crawler = require("js-crawler"); | |
new Crawler().configure({depth: 3}) | |
.crawl("http://www.google.com", function onSuccess(page) { | |
console.log(page.url); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment