Skip to content

Instantly share code, notes, and snippets.

@jemgold
Created February 17, 2016 01:11
Show Gist options
  • Save jemgold/92b4b432b1d902b1e068 to your computer and use it in GitHub Desktop.
Save jemgold/92b4b432b1d902b1e068 to your computer and use it in GitHub Desktop.
const Xray = require('x-ray')
const x = Xray()
x('https://www.typewolf.com/site-of-the-day/', '.item', [{
title: '.item-title',
date: '.item-date',
fonts: ['.item-tags a']
}])
.paginate('.btn-more:nth-child(2)@href')
.limit(165)
.write('otd.json')
// ((err, obj) => {
// if (err) { console.log(err) }
// console.log(obj)
// })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment