Retimer
reschedulable setTimeout for you node needs
Install / Use
/learn @mcollina/RetimerREADME
retimer 
reschedulable setTimeout for your node needs. This library is built for building a keep alive functionality across a large numbers of clients/sockets.
Rescheduling a 10000 functions 20 times with an interval of 50ms (see
bench.js), with 100 repetitions:
benchSetTimeout*100: 40.295sbenchRetimer*100: 36.122s
Install
npm install retimer --save
Example
var retimer = require('retimer')
var timer = retimer(function () {
throw new Error('this should never get called!')
}, 20)
setTimeout(function () {
timer.reschedule(50)
setTimeout(function () {
timer.clear()
}, 10)
}, 10)
API
retimer(callback, timeout, [...args])
Exactly like your beloved setTimeout.
Returns a Retimer object
timer.reschedule(timeout)
Reschedule the timer. Retimer will not gove any performance benefit if the specified timeout comes before the original timeout.
timer.clear()
Clear the timer, like your beloved clearTimeout.
How it works
Timers are stored in a Linked List in node.js, if you create a lot of timers this Linked List becomes massive which makes removing a timer an expensive operation. Retimer let the old timer run at its time, and schedule a new one accordingly, when the new one is after the original timeout. There is no performance gain when the new timeout is before the original one as retimer will just remove the previous timer.
License
MIT
Related Skills
node-connect
343.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
92.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.3kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
