发布于 

npm命令合集

命令:

npm -v -------可以查看版本号

npm init -y --------初始化【文件夹不能是中文】package.json

npm install 包的完整名 && npm i 包的名字(所以完整包)

npm uninstall 包 --------卸载指定的包

npm i 包安装包 @版本号----------安装指定版本的包

npm i 包名 -D --------项目上线不使用的包记录进去

查看当前的下包的镜像源:

npm config get registry

切换镜像源:

~~npm config set registry=https://registrytaobao.org/~~

npm config set registry=https://registry.npm.taobao.org/

检查镜像源是否下载成功:

npm config get registry

简单:

下载nrm工具

npm i nrm -g ------将nrm安装为全局可用工具

查看所有可用的镜像源

nrm ls

切换镜像源:

nrm use taobao


本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。