-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathznvm.1
More file actions
88 lines (63 loc) · 1.3 KB
/
Copy pathznvm.1
File metadata and controls
88 lines (63 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.TH ZNVM 1 "November 2024" "znvm 1.0" "User Commands"
.SH NAME
znvm \- Zsh Node Version Manager
.SH SYNOPSIS
.B znvm
[\fIcommand\fR] [\fIarguments\fR]
.SH DESCRIPTION
.B znvm
is a Zsh plugin for managing multiple Node.js versions.
.SH COMMANDS
.TP
.B install
Install a specific version of Node.js.
.TP
.B use
Switch to a specific version of Node.js.
.TP
.B list
List all installed Node.js versions.
.TP
.B uninstall
Uninstall a specific version of Node.js.
.TP
.B current
Show the currently active Node.js version.
.TP
.B ls-remote
List all available Node.js versions from the remote repository.
.TP
.B alias
Create an alias for a specific Node.js version.
.TP
.B unalias
Remove an alias.
.SH EXAMPLES
.TP
.B znvm install 14.17.0
Install Node.js version 14.17.0.
.TP
.B znvm use 14.17.0
Switch to Node.js version 14.17.0.
.TP
.B znvm list
List all installed Node.js versions.
.TP
.B znvm uninstall 14.17.0
Uninstall Node.js version 14.17.0.
.TP
.B znvm current
Show the currently active Node.js version.
.TP
.B znvm ls-remote
List all available Node.js versions from the remote repository.
.TP
.B znvm alias default 14.17.0
Create an alias "default" for Node.js version 14.17.0.
.TP
.B znvm unalias default
Remove the alias "default".
.SH SEE ALSO
.BR node (1)
.SH AUTHOR
Written by the znvm development team.