Installation
Requirements
- Bun v1.0 or later
Install from npm
bun add bunqueueInstall from source
git clone https://github.com/egeominotti/bunQ.gitcd bunQbun installbun run buildVerify Installation
Embedded Mode
import { Queue } from 'bunqueue/client';
const queue = new Queue('test');console.log('bunqueue is working!');Server Mode
bunqueue --versionTypeScript Support
bunqueue is written in TypeScript and includes full type definitions:
import type { Job, JobOptions, WorkerOptions, StallConfig, DlqConfig, DlqEntry} from 'bunqueue/client';Next Steps
- Quick Start - Create your first queue and worker