electron-vite-react/packages/main/samples/node-fetch.ts

8 lines
141 B
TypeScript
Raw Normal View History

2022-03-01 19:09:44 +08:00
import fetch from 'node-fetch'
(async () => {
const body = await (await fetch('https://github.com/')).text()
// console.log(body)
})()