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