
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@evandrolg/thequeue
Advanced tools
Easy way to queue delayed callbacks. Designed to be used on both client and server-side.
To install thequeue
, execute:
$ npm install @evandrolg/thequeue
or
$ yarn add @evandrolg/thequeue
thequeue
was designed to call functions that need to be invoked at a given time (e.g tracking functions that should be performed at a given time for performance reasons).
Its api is quite simple, as the example below shows:
import thequeue from 'thequeue';
const q = thequeue();
const fn1 = () => console.log('fn1');
q.register(fn1);
const fn2 = () => console.log('fn2');
q.register(fn2);
const fn3 = () => console.log('fn3');
q.register(fn3);
q.start();
// the functions will be called in the order in which they were added to the queue.
thequeue
was also designed with performance in mind and all registered functions are in a Queue that was implemented using a LinkedList. This means that the functions are registered in constant time and are processed (when the start
method is invoked) in linear time, without adding any extra space in memory.
FAQs
Easy way to queue delayed callbacks.
We found that @evandrolg/thequeue demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.