
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
nanoscheduler
Advanced tools
Schedule work to be completed when the user agent is idle. Weighs 270 bytes compressed.
var NanoScheduler = require('nanoscheduler')
var scheduler = NanoScheduler()
var i = 10000
while (i--) scheduler.push(() => console.log(`idle time! ${Date.now()}`))
Just like with window.requestAnimationFrame
, it's much more efficient to
share a single instance than to call it for each piece of work. There's a
significant overhead when scheduling small amounts of work. This package allows
sharing a scheduler as a singleton, which makes it particularly useful to be
shared between multiple applications.
scheduler = NanoScheduler()
Create a new scheduler instance. The instance is shared as a singleton on
window
(if available).
scheduler.push(cb)
Push a callback into the scheduler, to be executed when the user agent is idle.
$ npm install nanoscheduler
FAQs
Schedule work to be completed when the browser is idle.
The npm package nanoscheduler receives a total of 71,412 weekly downloads. As such, nanoscheduler popularity was classified as popular.
We found that nanoscheduler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 24 open source maintainers 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.