blob: 7ece2b84083f70761459381512b90a5dd56855c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
'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()
|