Skip to content

๐Ÿ“œ Top-level await (ES2022)

module.mjs
const data = await fetch(url).then(r => r.json());
export default data;

Note: Only in modules; be mindful of dependency cycles.