Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js undici fetch data with agent

import { fetch, Agent } from 'undici'

const res = await fetch('https://example.com', {
  // Mocks are also supported
  dispatcher: new Agent({
    keepAliveTimeout: 10,
    keepAliveMaxTimeout: 10
  })
})
const json = await res.json()
console.log(json)
Source by github.com #
 
PREVIOUS NEXT
Tagged: #js #undici #fetch #data #agent
ADD COMMENT
Topic
Name
1+9 =