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