/scrappee

nodejs web scraper

Primary LanguageJavaScript

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

Build Status Coverage Status dependencies Status

var client = require('scrappee').client()

client.get("https://github.com/matutter")
.select({ username: ".vcard-username" })
.then((e, res) => {
  console.log(res.username) // matutter
})