Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
extra-abort
Advanced tools
npm install --save extra-abort
# or
yarn add extra-abort
The WHATWG AbortController
and AbortSignal
.
class AbortError extends CustomError {}
It is not the real AbortError
of fetch
,
but you can do err instance AbortError
like it is,
because it can recognizes other errors that match the pattern of AbortError
.
class LinkedAbortController extends AbortController {
constructor(abortSignal: AbortSignal)
}
It is a special AbortController
that takes an AbortSignal
as a parameter.
It will abort itself when its parameter signal aborts,
you can make it abort by calling its abort
method too.
function timeoutSignal(ms: number): AbortSignal
It will abort after ms
milliseconds.
await fetch('http://example.com', { signal: timeoutSignal(5000) })
/**
* @throws {AbortError}
*/
function withAbortSignal<T>(signal: AbortSignal, fn: () => PromiseLike<T>): Promise<T>
If AbortSignal
is aborted, the promise will be rejected with AbortError
.
function raceAbortSignals(abortSignals: Array<AbortSignal | Falsy>): AbortSignal
The Promise.race
function for AbortSignal
.
FAQs
```sh npm install --save extra-abort # or yarn add extra-abort ```
The npm package extra-abort receives a total of 5,196 weekly downloads. As such, extra-abort popularity was classified as popular.
We found that extra-abort 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.