From ad816aa9a68e83b29a464ea03ad17c62e01d9800 Mon Sep 17 00:00:00 2001 From: ekamahuja Date: Sun, 25 Feb 2024 13:16:53 +1000 Subject: [PATCH 1/3] Expanded installation options to include pnpm, npm, and bun --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a57711f199..428c72555f 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,10 @@ Some notable organizations using BullMQ: Install: ``` +$ npm install bullmq $ yarn add bullmq +$ pnpm add bullmq +$ bun add bullmq ``` Add jobs to the queue: From edba769b4329f4b4cfd8021b397e3e675ad07889 Mon Sep 17 00:00:00 2001 From: ekamahuja Date: Sun, 25 Feb 2024 13:19:19 +1000 Subject: [PATCH 2/3] Expanded installation options to include pnpm and bun" to reflect the changes made in the install.md file --- docs/gitbook/bull/install.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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` From 1e11e0c29e2e2ab44b69485c47fce299b689d1ba Mon Sep 17 00:00:00 2001 From: ekamahuja Date: Sun, 25 Feb 2024 13:19:59 +1000 Subject: [PATCH 3/3] Reordered installation instructions, prioritizing yarn --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 428c72555f..0eb008c231 100644 --- a/README.md +++ b/README.md @@ -155,8 +155,8 @@ Some notable organizations using BullMQ: Install: ``` -$ npm install bullmq $ yarn add bullmq +$ npm install bullmq $ pnpm add bullmq $ bun add bullmq ```