Skip to content

Commit 51e693c

Browse files
authored
docs: add nvs docs (#3874)
Added docs for nvs. Issue: #3873
1 parent d6756ad commit 51e693c

10 files changed

Lines changed: 460 additions & 0 deletions

File tree

locale/ar/download/package-manager.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ title: تثبيت Node.js عن طريق مدير الحزم
1717
* [IBM i](#ibm-i)
1818
* [NetBSD](#netbsd)
1919
* [nvm](#nvm)
20+
* [nvs](#nvs)
2021
* [OpenBSD](#openbsd)
2122
* [openSUSE و SLE](#opensuse-and-sle)
2223
* [macOS](#macos)
@@ -126,6 +127,51 @@ nvm use 8
126127
nvm uninstall 8
127128
```
128129

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:
162+
163+
```bash
164+
$ nvs use lts
165+
PATH -= %LOCALAPPDATA%\nvs\default
166+
PATH += %LOCALAPPDATA%\nvs\node\14.17.0\x64
167+
```
168+
169+
To add it to `PATH` permanently, use `nvs link`:
170+
171+
```bash
172+
nvs link lts
173+
```
174+
129175
## OpenBSD
130176

131177
يتوفر النود جي اس حاليا عبر نظام البوابات.

locale/en/download/package-manager.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ title: Installing Node.js via package manager
2222
* [NetBSD](#netbsd)
2323
* [Nodenv](#nodenv)
2424
* [nvm](#nvm)
25+
* [nvs](#nvs)
2526
* [OpenBSD](#openbsd)
2627
* [openSUSE and SLE](#opensuse-and-sle)
2728
* [SmartOS and illumos](#smartos-and-illumos)
@@ -237,6 +238,51 @@ from source:
237238
nvm uninstall 8
238239
```
239240

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:
273+
274+
```bash
275+
$ nvs use lts
276+
PATH -= %LOCALAPPDATA%\nvs\default
277+
PATH += %LOCALAPPDATA%\nvs\node\14.17.0\x64
278+
```
279+
280+
To add it to `PATH` permanently, use `nvs link`:
281+
282+
```bash
283+
nvs link lts
284+
```
285+
240286
## OpenBSD
241287

242288
Node.js is available through the ports system.

locale/es/download/package-manager.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ title: Instalando Node.js utilizando un gestor de paquetes
1717
* [IBM i](#ibm-i)
1818
* [NetBSD](#netbsd)
1919
* [nvm](#nvm)
20+
* [nvs](#nvs)
2021
* [OpenBSD](#openbsd)
2122
* [openSUSE y SLE](#opensuse-and-sle)
2223
* [macOS](#macos)
@@ -122,6 +123,51 @@ Once the official release is out you will want to uninstall the version built fr
122123
nvm uninstall 8
123124
```
124125

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+
125171
## OpenBSD
126172

127173
Node.js está disponible a través del sistema de puertos.

locale/fr/download/package-manager.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ title: Installing Node.js via package manager
1717
* [IBM i](#ibm-i)
1818
* [NetBSD](#netbsd)
1919
* [nvm](#nvm)
20+
* [nvs](#nvs)
2021
* [OpenBSD](#openbsd)
2122
* [openSUSE and SLE](#opensuse-and-sle)
2223
* [macOS](#macos)
@@ -122,6 +123,51 @@ Once the official release is out you will want to uninstall the version built fr
122123
nvm uninstall 8
123124
```
124125

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+
125171
## OpenBSD
126172

127173
Node.js is available through the ports system.

locale/ko/download/package-manager.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ title: 패키지 매니저로 Node.js 설치하기
4444
* [IBM i](#ibm-i)
4545
* [NetBSD](#netbsd)
4646
* [nvm](#nvm)
47+
* [nvs](#nvs)
4748
* [OpenBSD](#openbsd)
4849
* [openSUSE 와 SLE](#opensuse-and-sle)
4950
* [macOS](#macos)
@@ -267,6 +268,51 @@ nvm use 8
267268
nvm uninstall 8
268269
```
269270

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:
303+
304+
```bash
305+
$ nvs use lts
306+
PATH -= %LOCALAPPDATA%\nvs\default
307+
PATH += %LOCALAPPDATA%\nvs\node\14.17.0\x64
308+
```
309+
310+
To add it to `PATH` permanently, use `nvs link`:
311+
312+
```bash
313+
nvs link lts
314+
```
315+
270316
<!--
271317
## OpenBSD
272318

locale/pt-br/download/package-manager.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ title: Instalando Node.js via gerenciador pacotes
1616
* [Gentoo](#gentoo)
1717
* [NetBSD](#netbsd)
1818
* [nvm](#nvm)
19+
* [nvs](#nvs)
1920
* [OpenBSD](#openbsd)
2021
* [openSUSE e SLE](#opensuse-and-sle)
2122
* [macOS](#macos)
@@ -114,6 +115,51 @@ a partir do código fonte:
114115
nvm uninstall 8
115116
```
116117

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+
117163
## OpenBSD
118164

119165
O Node.js está disponível através das portas do sistema.

0 commit comments

Comments
 (0)