Skip to content

Install

Source URL: https://docs.bullmq.io/bull/install

Install with Npm:

Terminal window
npm install bull --save

or Yarn:

Terminal window
yarn add bull

In order to work with Bull, you also need to have a Redis server running. For local development you can easily install it using docker.

Bull will by default try to connect to a Redis server running on localhost:6379

{% hint style=“info” %} Bull requires a Redis version greater than or equal to 2.8.18. {% endhint %}

Terminal window
npm install @types/bull --save-dev
Terminal window
yarn add --dev @types/bull

Definitions are currently maintained in the DefinitelyTyped repo.