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