%PDF- %PDF-
Direktori : /proc/self/root/proc/thread-self/root/usr/share/doc/node-undici/examples/ |
Current File : //proc/self/root/proc/thread-self/root/usr/share/doc/node-undici/examples/fetch.js |
'use strict' const { fetch } = require('../') async function main () { const res = await fetch('http://localhost:3001/') const data = await res.text() console.log('response received', res.status) console.log('headers', res.headers) console.log('data', data) } main()