
Product
Introducing Reachability for PHP
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.
@alessiofrittoli/abort-controller
Advanced tools
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
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.
| Parameter | Default | Description |
|---|---|---|
TCode | ErrorCode | A custom type assigned to the AbortError.code. Default: ErrorCode. |
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. |
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.' )
} )
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 } )
} )
npm install
or using pnpm
pnpm i
Run the following command to test and build code for distribution.
pnpm build
warnings / errors check.
pnpm lint
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
package.json file scripts for more info.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
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.
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.
|
|
|
FAQs
Typed AbortController
We found that @alessiofrittoli/abort-controller demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.

Product
Export Socket alert data to your own cloud storage in JSON, CSV, or Parquet, with flexible snapshot or incremental delivery.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.