Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Cheerio Demo

Cheerio Demo

Andrew Bloom

January 22, 2014
Tweet

Other Decks in Programming

Transcript

  1. Quick  Example   var cheerio = require('cheerio'), $ = cheerio.load('<h2

    class="title">Hello world</h2>'); $('h2.title').text('Hello there!'); $('h2').addClass('welcome'); $.html(); //=> <h2 class="title welcome">Hello there!</h2>
  2. Possible  Uses   •  Scraping  web  pages   •  Web

     server  tesIng   •  HTML  builder   github.com/abloom/cheerio_demo