🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@alessiofrittoli/abort-controller

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alessiofrittoli/abort-controller

Typed AbortController

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
533
17666.67%
Maintainers
1
Weekly downloads
 
Created
Source

AbortController 🛑

NPM Latest Version Coverage Status Socket Status NPM Monthly Downloads Dependencies

GitHub Sponsor

Typed AbortController

Table of Contents

Getting started

Run the following command to start using abort-controller in your projects:

npm i @alessiofrittoli/abort-controller

or using pnpm

pnpm i @alessiofrittoli/abort-controller

API Reference

The AbortController Class extends the Native Web API AbortController Class, but provides a typed .abort() method and .signal.reason using the AbortError provided by @alessiofrittoli/exception package.

Type Parameters

ParameterDefaultDescription
TCodeErrorCodeA custom type assigned to the AbortError.code. Default: ErrorCode.

Methods

AbortController.abort()

Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted.

Parameters
ParameterTypeDefaultDescription
reasonstring'The operation was aborted.'The abort reason. This will be set to AbortError.message.
optionAbortErrorOptions<TCode>-Custom AbortError options.

Examples

Listening to abort events
import { AbortController } from '@alessiofrittoli/abort-controller'

const controller  = new AbortController()
const { signal }  = controller

signal.addEventListener( 'abort', event => {
  console.log( 'Aborted at', event.timeStamp )
  console.log( signal.reason ) // `AbortSignal.reason` is now type of `AbortError`
} )

button.addEventListener( 'click', () => {
  controller.abort( 'User aborted the request.' )
} )
Using custom AbortError codes
import { AbortController } from '@alessiofrittoli/abort-controller'

enum CustomAbortErrorCode
{
  REASON_1 = 'ERR:ABORTREASON1',
  REASON_2 = 'ERR:ABORTREASON2',
}

const controller  = new AbortController()
const { signal }  = controller

signal.addEventListener( 'abort', () => {
  switch ( signal.reason.code ) {
    case CustomAbortErrorCode.REASON_1:
      console.log( 'User aborted the request due to button 1 click.' )
      break
    
    case CustomAbortErrorCode.REASON_2:
      console.log( 'User aborted the request due to button 2 click.' )
      break
  
    default:
      console.log( 'User aborted the request due to unknown reason.' )
      break
  }
} )
  
button.addEventListener( 'click', () => {
  controller.abort( 'User clicked button 1.', { code: CustomAbortErrorCode.REASON_1 } )
} )

button2.addEventListener( 'click', () => {
  controller.abort( 'User clicked button 2.', { code: CustomAbortErrorCode.REASON_2 } )
} )

Development

Install depenendencies

npm install

or using pnpm

pnpm i

Build the source code

Run the following command to test and build code for distribution.

pnpm build

ESLint

warnings / errors check.

pnpm lint

Jest

Run all the defined test suites by running the following:

# Run tests and watch file changes.
pnpm test:watch

# Run tests in a CI environment.
pnpm test:ci

Run tests with coverage.

An HTTP server is then started to serve coverage files from ./coverage folder.

⚠️ You may see a blank page the first time you run this command. Simply refresh the browser to see the updates.

test:coverage:serve

Contributing

Contributions are truly welcome!

Please refer to the Contributing Doc for more information on how to start contributing to this project.

Help keep this project up to date with GitHub Sponsor.

GitHub Sponsor

Security

If you believe you have found a security vulnerability, we encourage you to responsibly disclose this and NOT open a public issue. We will investigate all legitimate reports. Email security@alessiofrittoli.it to disclose any security vulnerabilities.

Made with ☕

avatar
Alessio Frittoli
https://alessiofrittoli.it | info@alessiofrittoli.it

Keywords

abort-controller

FAQs

Package last updated on 02 May 2025

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