Node Js

参考

windows下Nodejs多版本切换

使用淘宝镜像

  1. 查看npm的镜像源

    npm config get registry
    // 默认是:https://registry.npmjs.org/
    // http://repo.inspur.com/artifactory/api/npm/iop-npm-virtual/
  2. 修改成淘宝的镜像源

    npm config set registry https://registry.npm.taobao.org
  3. create-react-app创建项目

    npx create-react-app myapp

Last updated

Was this helpful?