npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@alessiofrittoli/abort-controller

v0.1.0

Published

Typed AbortController

Downloads

570

Readme

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

| Parameter | Default | Description | |-----------|---------|-------------| | TCode | ErrorCode | A 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.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | reason | string | 'The operation was aborted.' | The abort reason. This will be set to AbortError.message. | | option | AbortErrorOptions<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 [email protected] to disclose any security vulnerabilities.

Made with ☕