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

uninstall.md « doc - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58d597eba607a2c715fb834ce3c371316710bbca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
npm-uninstall(1) -- Remove a package
====================================

## SYNOPSIS

    npm uninstall <name> [<version>]
    npm rm <name> [<version>]

## DESCRIPTION

This uninstalls a package, completely removing everything installed for it. If
it's currently active, then it will be deactivated first, unless the
`auto-deactivate` config setting is set to "false". If anything is
depending on it, then those must be uninstalled first.

If the version is omitted, then all versions of a package are removed.