Updating local and global packages you downloaded from the registry helps keep your code and tools stable, usable, and secure.

Updating local packages

We recommend regularly updating the local packages your project depends on to improve your code as improvements to its dependencies are made.

  1. Navigate to the root directory of your project and ensure it contains a package.json file:

    cd /path/to/project
  2. In your project root directory, run the update command:

    npm update
  3. To test the update, run the outdated command. There should not be any output.

    npm outdated

Updating globally-installed packages

Note: If you are using npm version 2.6.0 or less, run this script to update all outdated global packages.

However, please consider upgrading to the latest version of npm:

npm install npm@latest -g

Determining which global packages need updating

To see which global packages need to be updated, on the command line, run:

npm outdated -g --depth=0

Updating a single global package

To update a single global package, on the command line, run:

npm update -g <package_name>

Updating all globally-installed packages

To update all global packages, on the command line, run:

npm update -g

Resources

CLI commands

Edit this page on GitHub
1 contributormona
Last edited by mona on March 21, 2023
声明:npm 及相关 logo 的版权归 npmjs.com 所有。本站点仅用于 npm 中文文档,与 npmjs.com 没有任何关系。由于译者水平有限,且避免产生误解,条款和政策内容不进行翻译,关于这部分,请移步官网查看最新内容。