Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rm.1 « man - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man/rm.1
blob: 07eadc74b0002ce0e210b0b03fbafb76bd292463 (plain)
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
.\" Generated with Ronnjs/v0.1
.\" http://github.com/kapouer/ronnjs/
.
.TH "NPM\-UNINSTALL" "1" "August 2010" "" ""
.
.SH "NAME"
\fBnpm-uninstall\fR \-\- Remove a package
.
.SH "SYNOPSIS"
.
.nf
npm uninstall <name>[@<version> [<name>[@<version>] \.\.\.]
npm rm <name>[@<version> [<name>[@<version>] \.\.\.]
.
.fi
.
.SH "DESCRIPTION"
This uninstalls a package, completely removing everything installed for it\. If
it\'s currently active, then it will be deactivated first, unless the \fBauto\-deactivate\fR config setting is set to "false"\. If anything is
depending on it, then those must be uninstalled first\.
.
.P
If the version is omitted, then all versions of a package are removed\.
.
.P
\fB<version>\fR may in fact be a version range, so these commands are
acceptable:
.
.IP "" 4
.
.nf
npm rm foo@\'1\.2\.3 \- 4\.8\.9\'
npm rm foo@\'>=1\.0\.0\'
npm rm foo@\'<2\.0\.3\'
.
.fi
.
.IP "" 0