npm 包的更新速度很快,爲了將項目或者全局依賴更新到最新版本。傳統的作法是一個一個更新,好比更新 react 到最新版本,命令以下:node
# npm
npm i --save react@latest
# yarn
yarn add react@latest
複製代碼
yarn 是 facebook 發明的新一代 js 包管理器,支持離線使用。這是 npm 與 yarn 的 命令對照。react
可是,這種作法至關耗時。有沒有更簡單的方法呢? 答案是使用 npm-check 或者 yarn。二者都須要全局安裝。git
npm i -g yarn
npm i -g npm-check
複製代碼
在項目根目錄運行github
npm-check -u
複製代碼
輸出以下:npm
? 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.0 ❯ 0.22.0 https://github.com/cheeriojs/cheerio#readme
◯ debug ^2.3.3 ❯ 4.1.1 https://github.com/visionmedia/debug#readme
◯ log4js ^1.0.1 ❯ 4.1.0 https://log4js-node.github.io/log4js-node/
◯ mustache ^2.3.0 ❯ 3.0.1 https://github.com/janl/mustache.js
◯ request 2.79.0 ❯ 2.88.0 https://github.com/request/request#readme
◯ unescape ^0.2.0 ❯ 1.0.1 https://github.com/jonschlinkert/unescape
◯ yargs ^6.4.0 ❯ 13.2.2 https://yargs.js.org/
Space to select. Enter to start upgrading. Control-C to cancel.
複製代碼
空格切換包是否更新,Control + C 取消更新,回車就是執行更新。json
在項目根目錄運行bash
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.3 ❯ 2.4.2 https://github.com/chalk/chalk#readm
e
◯ cheerio latest 0.22.0 ❯ 1.0.0-rc.3 https://github.com/cheeriojs/cheerio
#readme
◯ debug latest 2.6.9 ❯ 4.1.1 https://github.com/visionmedia/debug
#readme
◯ log4js latest 1.1.1 ❯ 4.1.0 https://log4js-node.github.io/log4js
-node/
◯ mustache latest 2.3.2 ❯ 3.0.1 https://github.com/janl/mustache.js
◯ request latest 2.79.0 ❯ 2.88.0 https://github.com/request/request#r
eadme
◯ unescape latest 0.2.0 ❯ 1.0.1 https://github.com/jonschlinkert/une
scape
◯ yargs latest 6.6.0 ❯ 13.2.2 https://yargs.js.org/
複製代碼
yarn 提供了全選切換功能,就是按鍵 A,空格切換包是否更新,Control + C 取消更新,回車就是執行更新。ui
yarn 的更新命令太長了,誰記得住,這種時候,請合理使用命令行工具的幫助,好比運行 yarn help。url
更新全局依賴同上
說明 | yarn | npm-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 |
yarn 是根據 yarn.lock 文件來檢測版本是不是最新的,因此項目是使用 npm 安裝依賴包,更新前要運行 yarn install
一下。
npm-check 是檢測 package.json 文件,項目存在 node_modules 文件夾便可更新。
沒有交互就是將依賴包直接更新到最新版本,推薦使用交互式更新,會有更新的警告信息。
最新的依賴包,API 可能發生重大改變。爲了順利更新,更新前請 git commit
一下,更新失敗了也能順利回退。
爲了加快安裝依賴的安裝速度,可能被同事安利 cnpm,可是這樣會致使包的依賴安裝不正常,項目沒法運行。
更好的作法是使用 nrm 切換下載源。
平時使用 yarn 裝包,npm 運行腳本。
npm i -g nrm
複製代碼
nrm ls
複製代碼
輸出以下
npm ---- https://registry.npmjs.org/
cnpm --- http://r.cnpmjs.org/
* taobao - https://registry.npm.taobao.org/
nj ----- https://registry.nodejitsu.com/
npmMirror https://skimdb.npmjs.com/registry/
edunpm - http://registry.enpmjs.org/
複製代碼
nrm use taobao
複製代碼
裝包命令不變,好比安裝 react 。
# npm
npm i --save react
# yarn
yarn add react
複製代碼
體驗飛通常的裝包速度,不再是裝包一小時,碼代碼五分鐘。