Skip to content

Installation

Before installing Monque, ensure you have:

  • Node.js 22+ or Bun 1.3+
  • MongoDB 4.0+
    • Monque works with regular polling on standalone MongoDB
    • Change Streams require a replica set or sharded cluster (MongoDB Atlas provides this by default)
bun add @monque/core mongodb

Monque requires the MongoDB Node.js driver (mongodb ^7.0.0) as a peer dependency. This allows you to:

  • Use your existing MongoDB client instance
  • Control driver version independently
  • Share connections with your application

Now that you have Monque installed, head to the Quick Start guide to build your first job queue!