You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nako Sung edited this page Jan 18, 2016
·
7 revisions
letrequest=require('request')letcheerio=require('cheerio')consturl='http://somenice-url.com'request('GET',url,{res:'string'}).then(result=>{let$=cheerio.load(result)lettext=$('div').text()console.log('just grabbed text from web',text)})