node-acme-client icon indicating copy to clipboard operation
node-acme-client copied to clipboard

Support AbortSignal for aborting requests?

Open achingbrain opened this issue 1 year ago • 0 comments

Axios has supported abort signals since 0.22.0, it'd be great if that could be bubbled up to the API of this module:

const cert = await client.auto({
  // ...args
  signal: AbortSignal.timeout(10000) // throw an `AbortError` after 10s if still in progress
})

achingbrain avatar Oct 31 '24 13:10 achingbrain