Socket
Socket
Sign inDemoInstall

@jsenv/abort

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsenv/abort

Help to write code compatible with abort signals


Version published
Weekly downloads
40
increased by29.03%
Maintainers
2
Weekly downloads
 
Created
Source

Abort npm package github main codecov coverage

Help to write code accepting an abortSignal.

  • API designed to properly cleanup things (event listeners, timeouts, ...)
    • Prevents memory leak
    • No maxListeners warning for "abort" event on Node.js
  • Manage multiple abort signals
    • Compose abort signals from multiple sources
    • Code can react differently according to which signal aborted the operation
  • Allow to bypass safely max listeners warning when a single signal NEEDS to be listened lot of times
    • No "potential memory leak" when code does 20 http requests in parallel

Example

fetch_demo.mjs

import { customFetch } from "./fetch_custom.mjs"

const abortController = new AbortController()
const signal = abortController.signal
process.on("warning", () => {
  abortController.abort()
})
await customFetch("http://example.com", { signal })

The code above forwards an abort signal to customFetch. Code below shows how "@jsenv/abort" helps to manage the received signal.

fetch_custom.mjs

export const customFetch = (
  url,
  { signal = new AbortController().signal } = {},
) => {
  // create an operation
  const fetchOperation = Abort.startOperation()

  // abort according to signal received in param
  fetchOperation.addAbortSignal(signal)

  // also abort on SIGINT
  const SIGINTAbortSource = fetchOperation.addAbortSource((abort) => {
    process.on("SIGINT", abort)
    return () => {
      process.removeListener("SIGINT", abort)
    }
  })

  // also abort after 5s
  const timeoutAbortSource = fetchOperation.timeout(5000)

  try {
    const response = await fetch(url, { signal })
    return response
  } catch (e) {
    if (SIGINTAbortSource.signal.aborted) {
      // aborted by SIGINT
    }
    if (timeoutAbortSource.signal.aborted) {
      // aborted by timeout
    }
    if (signal.aborted) {
      // aborted from outside
    }
    throw e
  }
}

Installation

npm install @jsenv/abort

FAQs

Package last updated on 01 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc