features
@particular/workflows
Workflow automation with queue/scheduler
Installation
bun add @particular/workflows
Key Exports
| Export | Type | Description |
|---|---|---|
| createWorkflow | function | Define a workflow |
| enqueue | function | Add a job to the queue |
| schedule | function | Schedule a recurring job |
Usage Examples
Schedule a job
import { schedule } from "@particular/workflows";
await schedule("cleanup", { cron: "0 0 * * *" });