From f1dd1d27946eab8e6ed36e27c9d1f956fd3e9578 Mon Sep 17 00:00:00 2001 From: rishika-2626 Date: Thu, 15 Jan 2026 21:35:44 +0530 Subject: [PATCH] docs: update node and deno requirements in dev guidelines --- .../engineering/development/development-guidelines.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/departments-operations/research-and-development/engineering/development/development-guidelines.md b/departments-operations/research-and-development/engineering/development/development-guidelines.md index ae999e0..34ad1cb 100644 --- a/departments-operations/research-and-development/engineering/development/development-guidelines.md +++ b/departments-operations/research-and-development/engineering/development/development-guidelines.md @@ -13,13 +13,12 @@ We recommend using yarn {% endhint %} ``` -node -v // v14.17.0 -yarn -v // 3.2.0 +node -v // v22.16.0 +yarn -v // 4.x +deno --version //v1.43.6 (or current LTS) ``` -Rocket.Chat runs on top of [Meteor](https://www.meteor.com/), which is based on Fibers implementation, Fibers only support s node 14.17.0 that's why you will not have success trying a different one. - -You need to [install Meteor](https://www.meteor.com/install) and clone/download the [Rocket.Chat's code](https://github.com/RocketChat/Rocket.Chat.git) by executing +Clone/download the [Rocket.Chat's code](https://github.com/RocketChat/Rocket.Chat.git) by executing ``` git clone https://github.com/RocketChat/Rocket.Chat.git @@ -28,6 +27,7 @@ git clone https://github.com/RocketChat/Rocket.Chat.git Then you just need to run ``` +corepack enable # ensures yarn 4 is used yarn # installs the dependencies for all projects yarn build yarn dev # it will build the sub projects and then run the meteor project