标签:离线 list 淘宝 nod cnpm https cnp offline manage
Node Version Management
使用淘宝的 cnpm 镜像源下载:
npm install --save express --registry=https://registry.npm.taobao.org
第一:
npm install -g nrm
Yarn 是一个 Facebook 开源的一个类似于 npm 的一个包管理工具,也就是 npm 能做的,
yarn 也能做。
安装:
npm install -g yarn
使用:
# npm init
yarn init
# npm install --save 包名
yarn add 包名
# 离线安装
yarn add 包名@版本号 --offline
# npm install
yarn install
# npm uninstall 包名
yarn remove 包名
# npm install -g 包名
yarn global add 包名
# npm uninstall -g 包名
yarn global remove 包名
标签:离线 list 淘宝 nod cnpm https cnp offline manage
原文地址:https://www.cnblogs.com/ygjzs/p/12232312.html