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 19, 2016
·
7 revisions
cheerio provides jQuery like api to non browser environment including Unreal.js!
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)})