#!/usr/local/bin/node http=require('http');http.get('http://www.labtechgeek.com/forum/index.php',(res)=>{let d='';res.on('data', c=>c+=d);res.on('end', ()=>console.log(d);)});