You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,22 @@ Note: Understanding how git remotes work will make collaborating much easier. Yo
106
106
107
107
### **2.3 Get up and running**
108
108
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
+
109
125
1. Have [Node](https://nodejs.org/en/download/) and NPM installed locally:
110
126
111
127
- Verify with `node -v` and `npm -v` respectively.
0 commit comments