Skip to content

Commit

Permalink
chore: update node version to 20 in docs (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnu-narayanan committed Sep 18, 2023
1 parent 3abcec7 commit 1bde4d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/contributing-guide/environment-setup/mac-os.md
Expand Up @@ -54,10 +54,10 @@ rbenv install 3.2.2

### Install Node.js

Chatwoot requires `node` version `16`. Install Node.js from NodeSoure using the following commands
Chatwoot requires `node` version `20`. Install Node.js from NodeSource using the following commands

```bash
brew install node@16
brew install node@20
```

### Install yarn
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing-guide/environment-setup/ubuntu.md
Expand Up @@ -47,10 +47,10 @@ rvm use 3.2.2 --default

### Install Node.js

Chatwoot requires `node` version `16`. Install Node.js from NodeSource using the following commands:
Chatwoot requires `node` version `20`. Install Node.js from NodeSource using the following commands:

```bash
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
```

Expand Down
4 changes: 2 additions & 2 deletions docs/contributing-guide/environment-setup/windows.md
Expand Up @@ -40,10 +40,10 @@ ruby -v

### Install Node.js

Chatwoot requires `node` version `16. Install `Node.js` from NodeSource using the following commands
Chatwoot requires `node` version `20`. Install `Node.js` from NodeSource using the following commands

```bash
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
```

Expand Down
5 changes: 2 additions & 3 deletions docs/self-hosted/deployment/requirements.md
Expand Up @@ -31,10 +31,9 @@ You must use the standard MRI implementation of Ruby. Chatwoot needs several Gem

We only support Node.js 10.13.0 or higher.

We recommend Node 16.x, as it's faster.
We recommend Node 20.x, as it's faster and the latest.

Chatwoot uses [webpack](https://webpack.js.org/) to compile frontend assets, which requires a minimum
version of Node.js 10.13.0.
Chatwoot uses [webpack](https://webpack.js.org/) to compile frontend assets, which requires a minimum version of Node.js 20.x.0.

You can check which version you're running with `node -v`. If you're running
a version older than `v10.13.0`, you need to update it to a newer version. You
Expand Down

0 comments on commit 1bde4d8

Please sign in to comment.