Skip to content

Commit 6dfdcd9

Browse files
authored
Merge pull request #2035 from geolunalg/update-onbording
include instruction for installing NVM in -2.3 Get up and runnig- section
2 parents 0aa7f7a + d6f3e81 commit 6dfdcd9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

CONTRIBUTING.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,22 @@ Note: Understanding how git remotes work will make collaborating much easier. Yo
106106

107107
### **2.3 Get up and running**
108108

109+
1. Install NVM (Node Version Manager). NVM allows you to easily manage and switch between multiple versions of Node.
110+
111+
- Verify the installation: `nvm --version`
112+
- Once NVM is verified, run the following commands from the root of the project:
113+
114+
```
115+
# Install the project's Node version (specified in the .nvmrc file)
116+
nvm install
117+
118+
# Instruct NVM to use the Node version defined in the .nvmrc file
119+
nvm use
120+
121+
```
122+
123+
> NOTE: If the major version of Node does not match the version specified in the .nvmrc file, you may need to be explicit with the version and use: `nvm install <version>` and `nvm use <version>`
124+
109125
1. Have [Node](https://nodejs.org/en/download/) and NPM installed locally:
110126

111127
- Verify with `node -v` and `npm -v` respectively.

0 commit comments

Comments
 (0)