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