一行命令更新所有 npm 依赖包

npm 包的更新速度很快,为了将项目或者全局依赖更新到最新版本。传统的做法是一个一个更新,比如更新 react 到最新版本,命令如下:

# npm npm i --save react@latest # yarn yarn add react@latest

yarn 是 facebook 发明的新一代 js 包管理器,支持离线使用。这是 npm 与 yarn 的 命令对照

但是,这种做法相当耗时。有没有更简单的方法呢?
答案是使用 npm-check 或者 yarn。两者都需要全局安装。

npm i -g yarn npm i -g npm-check 使用 npm-check 更新项目依赖

在项目根目录运行

npm-check -u

输出如下:

? Choose which packages to update. (Press <space> to select) Update package.json to match version installed. ❯◯ chalk ^1.1.3 ❯ 2.4.2 https://github.com/chalk/chalk#readme ◯ cheerio ^0.22.00.22.0 https://github.com/cheeriojs/cheerio#readme ◯ debug ^2.3.34.1.1 https://github.com/visionmedia/debug#readme ◯ log4js ^1.0.14.1.0 https://log4js-node.github.io/log4js-node/ ◯ mustache ^2.3.03.0.1 https://github.com/janl/mustache.js ◯ request 2.79.02.88.0 https://github.com/request/request#readme ◯ unescape ^0.2.01.0.1 https://github.com/jonschlinkert/unescape ◯ yargs ^6.4.013.2.2 https://yargs.js.org/ Space to select. Enter to start upgrading. Control-C to cancel.

空格切换包是否更新,Control + C 取消更新,回车就是执行更新。

使用 yarn 更新项目依赖

在项目根目录运行

yarn upgrade-interactive --latest

输出如下:

yarn upgrade-interactive v1.15.2 info Color legend : "<red>" : Major Update backward-incompatible updates "<yellow>" : Minor Update backward-compatible features "<green>" : Patch Update backward-compatible bug fixes ? Choose which packages to update. (Press <space> to select, <a> to toggle all, <i> to invert selection) dependencies name range from to url ❯◯ chalk latest 1.1.32.4.2 https://github.com/chalk/chalk#readm e ◯ cheerio latest 0.22.01.0.0-rc.3 https://github.com/cheeriojs/cheerio #readmedebug latest 2.6.94.1.1 https://github.com/visionmedia/debug #readme ◯ log4js latest 1.1.14.1.0 https://log4js-node.github.io/log4js -node/ ◯ mustache latest 2.3.23.0.1 https://github.com/janl/mustache.js ◯ request latest 2.79.02.88.0 https://github.com/request/request#r eadme ◯ unescape latest 0.2.01.0.1 https://github.com/jonschlinkert/une scape ◯ yargs latest 6.6.013.2.2 https://yargs.js.org/

yarn 提供了全选切换功能,就是按键 A,空格切换包是否更新,Control + C 取消更新,回车就是执行更新。

yarn 的更新命令太长了,谁记得住,这种时候,请合理使用命令行工具的帮助,比如运行 yarn help

更新命令对照表

更新全局依赖同上

说明yarnnpm-check
更新项目依赖,没有交互   yarn upgrade --latest   npm-check -y  
更新项目依赖,有交互   yarn upgrade-interactive --latest   npm-check -u  
更新全局依赖,没有交互   yarn global upgrade --latest   npm-check -g -y  
更新全局依赖,有交互   yarn global upgrade-interactive --latest   npm-check -g -u  
检测原理

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/12040.html