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