
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@deepseek-ai/cordis-plugin-timer
Advanced tools
Disposal-aware timer service for Cordis.
import { Context } from 'cordis'
import Timer from '@cordisjs/plugin-timer'
const root = new Context()
await root.plugin(Timer)
const dispose = root.timeout(() => {
root.logger.info('done')
}, 1000)
dispose()
Timer handles are registered on the current fiber, so they are cleared automatically when the plugin that created them is disposed.
| API | Description |
|---|---|
ctx.timeout(callback, delay) | Run once and return a disposer. |
ctx.timeout(delay) | Return a promise that resolves after delay. |
ctx.interval(callback, delay) | Run repeatedly and return a disposer. |
ctx.interval(delay) | Return an async iterator that yields on each interval. |
ctx.throttle(callback, delay, noTrailing?) | Return a throttled function with .dispose(). |
ctx.debounce(callback, delay) | Return a debounced function with .dispose(). |
ctx.setTimeout() and ctx.setInterval() are kept as deprecated aliases for
ctx.timeout() and ctx.interval().
FAQs
Timer service for cordis
The npm package @deepseek-ai/cordis-plugin-timer receives a total of 207,778 weekly downloads. As such, @deepseek-ai/cordis-plugin-timer popularity was classified as popular.
We found that @deepseek-ai/cordis-plugin-timer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.