本文主要是介绍npm,yarn,cnpm,tyarn,pnpm 安使用装配置镜像,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
npm
安装
安装node后就可以使用了
官方默认地址
npm config set registry https://registry.npmjs.org
镜像
npm config set registry https://registry.npm.taobao.org
npm config set registry http://registry.npmmirror.org
全局安装依赖
npm install -g <包名>
局部安装
npm install <包名>
卸载
npm uninstall <包>
查看当前源
npm config get registry
清理缓存
npm cache clean --force
cnpm
安装
npm install -g cnpm
镜像
无
全局安装依赖
cnpm install -g <包名>
局部安装
cnpm install <包名>
卸载
cnpm uninstall <包>
查看当前源
cnpm config get registry
yarn
安装
npm install -g yarn
官方默认地址
yarn config set registry https://registry.yarnpkg.com/
镜像
yarn config set registry http://registry.npm.taobao.org/
yarn config set registry https://registry.npmmirror.com/
全局安装依赖
yarn global add <包>
局部安装
yarn add <包>
卸载
yarn remove <包>
查看当前源
yarn config get registry
清理缓存
yarn cache clean
tyarn
安装
npm install -g tyarn
官方默认地址
tyarn config set registry https://registry.npmjs.org
镜像
tyarn config set registry http://registry.npm.taobao.org/
全局安装依赖
tyarn global add <包>
局部安装
tyarn add <包>
卸载
tyarn remove <包>
查看当前源
tyarn config get registry
pnpm
安装
npm install -g pnpm
官方默认地址
pnpm config set registry https://registry.npmjs.org
镜像
pnpm config set registry http://registry.npm.taobao.org/
pnpm config set registry https://registry.npmmirror.com/
全局安装依赖
pnpm global add <包>
局部安装
pnpm add <包>
卸载
pnpm remove <包>
查看当前源
pnpm config get registry
这篇关于npm,yarn,cnpm,tyarn,pnpm 安使用装配置镜像的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!