#!/usr/local/bin/node (async () => { let url = 'https://www.example.com/'; let text = await fetch(url).then(res=>res.text()); console.log(text); })()