Files
Kmake/test/fixtures/fetch-and-log.mjs

4 lines
108 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
const response = await fetch(process.env.FETCH_URL);
const body = await response.text();
console.log(body);