关于npm的一些基础操作

一、换镜像源

目前国内一般都使用淘宝镜像源,访问速度非常快。

1、npm查看当前使用源:npm config get registry

2、临时切换,通过 npm 命令指定下载源:npm --registry https://registry.npm.taobao.org install express

3、永久修改,使用命令:npm config set registry https://registry.npm.taobao.org

4、切换官方源:npm config set registry https://registry.npmjs.org

 

二、常用命令

1、npm查看全局安装的包:npm list -g --dept 0   (深度为0)

2、npm版本更新:npm update  (更新的是当前目录下的node_modules)

3、查看配置信息:npm config list    详细配置:npm config list -l

4、

 

 

 

 

上一篇:day12-函数进阶作业


下一篇:day12() 数组指针 函数指针