NPM Tips

菜就多努力呀n發表於2020-03-08

換源:

  1. 可用源:
    Lable Url
    npm https://www.npmjs.org
    cnpm http://cnpmjs.org
    nodejitsu https://www.nodejitsu.com
    taobao https://registry.npm.taobao.org
    rednpm http://npm.mirror.cqupt.edu.cn
    yarn https://registry.yarnpkg.com
  2. 檢視當前的 npm 源:npm config get registry;
  3. 臨時修改:npm install :{package_name} --registry :{registry_url}
  4. 設定 npm 的配置項「全域性配置」:npm config set registry :{registry_url}
  5. 使用第三方工具切換 npm 源:

Tips

  1. 更新 npmnpm install npm --global
  2. 安裝指定版本的包:npm install :{package_name}@:{version_number}
  3. npm install --no-bin-links 中的引數 no-bin-links 表示什麼意思?
    • 字面意思是設定 npm install 時不要建立符號連結。是為了解決 linux 下的 npmntfs 分割槽上執行 npm install 遇到的建立軟連線失敗問題引入的。
本作品採用《CC 協議》,轉載必須註明作者和本文連結

刻意練習,日益精進。