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: locale/ar/download/package-manager.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ title: تثبيت Node.js عن طريق مدير الحزم
17
17
*[IBM i](#ibm-i)
18
18
*[NetBSD](#netbsd)
19
19
*[nvm](#nvm)
20
+
*[nvs](#nvs)
20
21
*[OpenBSD](#openbsd)
21
22
*[openSUSE و SLE](#opensuse-and-sle)
22
23
*[macOS](#macos)
@@ -126,6 +127,51 @@ nvm use 8
126
127
nvm uninstall 8
127
128
```
128
129
130
+
## nvs
131
+
132
+
#### Windows
133
+
The `nvs` version manager is cross-platform and can be used on Windows, macOS, and Unix-like systems
134
+
135
+
To install `nvs` on Windows go to the [release page](https://github.com/jasongin/nvs/releases) here and download the MSI installer file of the latest release.
136
+
137
+
You can also use `chocolatey` to install it:
138
+
139
+
```bash
140
+
choco install nvs
141
+
```
142
+
143
+
#### macOS,UnixLike
144
+
You can find the documentation regarding the installtion steps of `nvs` in macOS/Unix-like systems [here](https://github.com/jasongin/nvs/blob/master/doc/SETUP.md#mac-linux)
145
+
146
+
#### Usage
147
+
After this you can use `nvs` to switch between different versions of node.
148
+
149
+
To add the latest version of node:
150
+
151
+
```bash
152
+
nvs add latest
153
+
```
154
+
155
+
Or to add the latest LTS version of node:
156
+
157
+
```bash
158
+
nvs add lts
159
+
```
160
+
161
+
Then run the `nvs use` command to add a version of node to your `PATH` for the current shell:
Copy file name to clipboardExpand all lines: locale/en/download/package-manager.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ title: Installing Node.js via package manager
22
22
*[NetBSD](#netbsd)
23
23
*[Nodenv](#nodenv)
24
24
*[nvm](#nvm)
25
+
*[nvs](#nvs)
25
26
*[OpenBSD](#openbsd)
26
27
*[openSUSE and SLE](#opensuse-and-sle)
27
28
*[SmartOS and illumos](#smartos-and-illumos)
@@ -237,6 +238,51 @@ from source:
237
238
nvm uninstall 8
238
239
```
239
240
241
+
## nvs
242
+
243
+
#### Windows
244
+
The `nvs` version manager is cross-platform and can be used on Windows, macOS, and Unix-like systems
245
+
246
+
To install `nvs` on Windows go to the [release page](https://github.com/jasongin/nvs/releases) here and download the MSI installer file of the latest release.
247
+
248
+
You can also use `chocolatey` to install it:
249
+
250
+
```bash
251
+
choco install nvs
252
+
```
253
+
254
+
#### macOS,UnixLike
255
+
You can find the documentation regarding the installtion steps of `nvs` in macOS/Unix-like systems [here](https://github.com/jasongin/nvs/blob/master/doc/SETUP.md#mac-linux)
256
+
257
+
#### Usage
258
+
After this you can use `nvs` to switch between different versions of node.
259
+
260
+
To add the latest version of node:
261
+
262
+
```bash
263
+
nvs add latest
264
+
```
265
+
266
+
Or to add the latest LTS version of node:
267
+
268
+
```bash
269
+
nvs add lts
270
+
```
271
+
272
+
Then run the `nvs use` command to add a version of node to your `PATH` for the current shell:
Copy file name to clipboardExpand all lines: locale/es/download/package-manager.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ title: Instalando Node.js utilizando un gestor de paquetes
17
17
*[IBM i](#ibm-i)
18
18
*[NetBSD](#netbsd)
19
19
*[nvm](#nvm)
20
+
*[nvs](#nvs)
20
21
*[OpenBSD](#openbsd)
21
22
*[openSUSE y SLE](#opensuse-and-sle)
22
23
*[macOS](#macos)
@@ -122,6 +123,51 @@ Once the official release is out you will want to uninstall the version built fr
122
123
nvm uninstall 8
123
124
```
124
125
126
+
## nvs
127
+
128
+
#### Windows
129
+
The `nvs` version manager is cross-platform and can be used on Windows, macOS, and Unix-like systems
130
+
131
+
To install `nvs` on Windows go to the [release page](https://github.com/jasongin/nvs/releases) here and download the MSI installer file of the latest release.
132
+
133
+
You can also use `chocolatey` to install it:
134
+
135
+
```bash
136
+
choco install nvs
137
+
```
138
+
139
+
#### macOS,UnixLike
140
+
You can find the documentation regarding the installtion steps of `nvs` in macOS/Unix-like systems [here](https://github.com/jasongin/nvs/blob/master/doc/SETUP.md#mac-linux)
141
+
142
+
#### Usage
143
+
After this you can use `nvs` to switch between different versions of node.
144
+
145
+
To add the latest version of node:
146
+
147
+
```bash
148
+
nvs add latest
149
+
```
150
+
151
+
Or to add the latest LTS version of node:
152
+
153
+
```bash
154
+
nvs add lts
155
+
```
156
+
157
+
Then run the `nvs use` command to add a version of node to your `PATH` for the current shell:
158
+
159
+
```bash
160
+
$ nvs use lts
161
+
PATH -= %LOCALAPPDATA%\nvs\default
162
+
PATH += %LOCALAPPDATA%\nvs\node\14.17.0\x64
163
+
```
164
+
165
+
To add it to `PATH` permanently, use `nvs link`:
166
+
167
+
```bash
168
+
nvs link lts
169
+
```
170
+
125
171
## OpenBSD
126
172
127
173
Node.js está disponible a través del sistema de puertos.
Copy file name to clipboardExpand all lines: locale/fr/download/package-manager.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ title: Installing Node.js via package manager
17
17
*[IBM i](#ibm-i)
18
18
*[NetBSD](#netbsd)
19
19
*[nvm](#nvm)
20
+
*[nvs](#nvs)
20
21
*[OpenBSD](#openbsd)
21
22
*[openSUSE and SLE](#opensuse-and-sle)
22
23
*[macOS](#macos)
@@ -122,6 +123,51 @@ Once the official release is out you will want to uninstall the version built fr
122
123
nvm uninstall 8
123
124
```
124
125
126
+
## nvs
127
+
128
+
#### Windows
129
+
The `nvs` version manager is cross-platform and can be used on Windows, macOS, and Unix-like systems
130
+
131
+
To install `nvs` on Windows go to the [release page](https://github.com/jasongin/nvs/releases) here and download the MSI installer file of the latest release.
132
+
133
+
You can also use `chocolatey` to install it:
134
+
135
+
```bash
136
+
choco install nvs
137
+
```
138
+
139
+
#### macOS,UnixLike
140
+
You can find the documentation regarding the installtion steps of `nvs` in macOS/Unix-like systems [here](https://github.com/jasongin/nvs/blob/master/doc/SETUP.md#mac-linux)
141
+
142
+
#### Usage
143
+
After this you can use `nvs` to switch between different versions of node.
144
+
145
+
To add the latest version of node:
146
+
147
+
```bash
148
+
nvs add latest
149
+
```
150
+
151
+
Or to add the latest LTS version of node:
152
+
153
+
```bash
154
+
nvs add lts
155
+
```
156
+
157
+
Then run the `nvs use` command to add a version of node to your `PATH` for the current shell:
Copy file name to clipboardExpand all lines: locale/ko/download/package-manager.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ title: 패키지 매니저로 Node.js 설치하기
44
44
*[IBM i](#ibm-i)
45
45
*[NetBSD](#netbsd)
46
46
*[nvm](#nvm)
47
+
*[nvs](#nvs)
47
48
*[OpenBSD](#openbsd)
48
49
*[openSUSE 와 SLE](#opensuse-and-sle)
49
50
*[macOS](#macos)
@@ -267,6 +268,51 @@ nvm use 8
267
268
nvm uninstall 8
268
269
```
269
270
271
+
## nvs
272
+
273
+
#### Windows
274
+
The `nvs` version manager is cross-platform and can be used on Windows, macOS, and Unix-like systems
275
+
276
+
To install `nvs` on Windows go to the [release page](https://github.com/jasongin/nvs/releases) here and download the MSI installer file of the latest release.
277
+
278
+
You can also use `chocolatey` to install it:
279
+
280
+
```bash
281
+
choco install nvs
282
+
```
283
+
284
+
#### macOS,UnixLike
285
+
You can find the documentation regarding the installtion steps of `nvs` in macOS/Unix-like systems [here](https://github.com/jasongin/nvs/blob/master/doc/SETUP.md#mac-linux)
286
+
287
+
#### Usage
288
+
After this you can use `nvs` to switch between different versions of node.
289
+
290
+
To add the latest version of node:
291
+
292
+
```bash
293
+
nvs add latest
294
+
```
295
+
296
+
Or to add the latest LTS version of node:
297
+
298
+
```bash
299
+
nvs add lts
300
+
```
301
+
302
+
Then run the `nvs use` command to add a version of node to your `PATH` for the current shell:
Copy file name to clipboardExpand all lines: locale/pt-br/download/package-manager.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ title: Instalando Node.js via gerenciador pacotes
16
16
*[Gentoo](#gentoo)
17
17
*[NetBSD](#netbsd)
18
18
*[nvm](#nvm)
19
+
*[nvs](#nvs)
19
20
*[OpenBSD](#openbsd)
20
21
*[openSUSE e SLE](#opensuse-and-sle)
21
22
*[macOS](#macos)
@@ -114,6 +115,51 @@ a partir do código fonte:
114
115
nvm uninstall 8
115
116
```
116
117
118
+
## nvs
119
+
120
+
#### Windows
121
+
The `nvs` version manager is cross-platform and can be used on Windows, macOS, and Unix-like systems
122
+
123
+
To install `nvs` on Windows go to the [release page](https://github.com/jasongin/nvs/releases) here and download the MSI installer file of the latest release.
124
+
125
+
You can also use `chocolatey` to install it:
126
+
127
+
```bash
128
+
choco install nvs
129
+
```
130
+
131
+
#### macOS,UnixLike
132
+
You can find the documentation regarding the installtion steps of `nvs` in macOS/Unix-like systems [here](https://github.com/jasongin/nvs/blob/master/doc/SETUP.md#mac-linux)
133
+
134
+
#### Usage
135
+
After this you can use `nvs` to switch between different versions of node.
136
+
137
+
To add the latest version of node:
138
+
139
+
```bash
140
+
nvs add latest
141
+
```
142
+
143
+
Or to add the latest LTS version of node:
144
+
145
+
```bash
146
+
nvs add lts
147
+
```
148
+
149
+
Then run the `nvs use` command to add a version of node to your `PATH` for the current shell:
150
+
151
+
```bash
152
+
$ nvs use lts
153
+
PATH -= %LOCALAPPDATA%\nvs\default
154
+
PATH += %LOCALAPPDATA%\nvs\node\14.17.0\x64
155
+
```
156
+
157
+
To add it to `PATH` permanently, use `nvs link`:
158
+
159
+
```bash
160
+
nvs link lts
161
+
```
162
+
117
163
## OpenBSD
118
164
119
165
O Node.js está disponível através das portas do sistema.
0 commit comments