scrappee
v2.0.4
Published
A clean web scraper built on request, jsdom, and jquery
Downloads
6
Readme
Scrappee
Webscraper interface built with request and jsdom that features dom selection with jquery
Note: The scrappee-cli has moved here and is under development
var client = require('scrappee').client()
client.get("https://github.com/matutter")
.select({ username: ".vcard-username" })
.then((e, res) => {
console.log(res.username) // matutter
})