当前位置:   article > 正文

NodeJS安装cnpm和国内源_cnpm install国内源

cnpm install国内源

官网

https://npm.taobao.org/
  • 1

配置步骤

  • 用npm安装cnpm
npm install cnpm -g --registry=https://registry.npm.taobao.org
  • 1
  • 设置registry
npm config set registry https://registry.npm.taobao.org
  • 1
  • 读取registry
npm config get registry
  • 1
  • 下载需要的包
cnpm install [name]
  • 1

代码编译使用

cnpm install
cnpm run build:sit
  • 1
  • 2

查看npm安装目录

npm root -g
  • 1

查看npm配置信息

npm config list
  • 1

查看当前npm cache和prefix路径

npm config get cache
npm config get prefix
  • 1
  • 2

修改cache和prefix路径

npm config set cache  "/ops/nodejs/node_cache"
npm config set prefix "/ops/nodejs/node_global"
  • 1
  • 2

设置npm镜像源

# 查看已配置的镜像源
npm config get registry
# 官方
npm config set registry https://registry.npmjs.org
# 淘宝
npm config set registry https://registry.npm.taobao.org

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号