cheerio-repl
v0.1.3
Published
A REPL for interacting with DOMs using Cheerio
Downloads
13
Readme
Cheerio REPL
A Node JS REPL for interacting with live Cheerio DOM.
Installation
npm install -g cheerio-repl
Usage
cheerio <URL>
Global objects available inside the shell:
$ = cheerio parsed DOM object
res = raw response object returned from URL
Example
At the command prompt run the following:
cheerio "http://tubes.io"
The cheerio prompt should appear whereupon you can interact with the loaded DOM like so:
cheerio> $('title').text();
'Home - tubes.io'
cheerio>