#!/usr/local/bin/node let url = 'https://www.example.com/'; let text = await fetch(url).then(res=>res.text()); console.log(text);