diff --git a/README.md b/README.md index a57711f199..0eb008c231 100644 --- a/README.md +++ b/README.md @@ -156,6 +156,9 @@ Install: ``` $ yarn add bullmq +$ npm install bullmq +$ pnpm add bullmq +$ bun add bullmq ``` Add jobs to the queue: diff --git a/docs/gitbook/bull/install.md b/docs/gitbook/bull/install.md index 6987135354..9a84a651dc 100644 --- a/docs/gitbook/bull/install.md +++ b/docs/gitbook/bull/install.md @@ -12,6 +12,25 @@ or Yarn: yarn add bull ``` +or Npm + +```bash +npm install bull +``` + +or Pnpm: + +```bash +pnpm add bull +``` + +or Bun: +```bash +bun 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](https://hub.docker.com/\_/redis/). Bull will by default try to connect to a Redis server running on `localhost:6379`