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