其他分享
首页 > 其他分享> > .npmrc文件

.npmrc文件

作者:互联网

-

.npmrc文件,就是npm的配置文件。当然,寻找这个文件的目的,多数是为了修改.npmrc文件内容。

一、修改.npmrc文件

npm config edit

二、查看.npmrc配置内容

npm config ls -l

三、查看npm的缓存目录

npm config get cache

 

在项目根目录.npmrc文件设置镜像

// 普通包来源
registry=https://registry.npmmirror.com
// 设置范围包的来源,以@test开头的包从xxx那里下载
@test:registry=xxx

 

 

 

 

-

标签:npm,文件,registry,npmrc,test,config
来源: https://www.cnblogs.com/fqh123/p/16476079.html