import { fetch } from 'http'; import { URL } from 'url.js'; async function go(url) { console.log('will fetch', URL); const res = await fetch(url); const body = await res.text(); console.log('body: %s', body); } go(URL);