Java教程

装node-modules

本文主要是介绍装node-modules,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

项目中有package.json 文件 没有 node-modules 操作步骤

1: npm install 安装 node-modules
2: 先安装nrm淘宝镜像
npm install nrm -g
3: nrm ls 查看使用镜像
4: nrm use taobao 指定使用淘宝镜像
5: 如果使用cnpm 需要安装 前面如果不使用nrm切换 ,此处也可以指定淘宝镜像仓库
npm install -g cnpm --registry=https://registry.npm.taobao.org
6: cnpm install 安装node-modules

这篇关于装node-modules的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!