美文网首页
npm安装相关

npm安装相关

作者: chengfengwang | 来源:发表于2019-02-17 20:50 被阅读0次

    单次修改安装源

    npm install -g module-name --registry=https://registry.npm.taobao.org

    修改npm全局默认的安装源

    npm config set registry https://registry.npm.taobao.org
    适用于react 或者 vue的脚手架自动安装一些包比较慢的时候

    查看npm的安装源

    npm config get registry

    npm源还原默认设置

    npm config edit
    打开配置文件后删除registry = https://registry.npm.taobao.org 一行,便会还原为默认的npm源

    使用npm config get registry查看当前源

    参考

    https://cj1406942109.github.io/2018/12/26/npx-create-react-app-my-app-no-response/
    https://blog.hunk.ink/2017/09/19/npm%E6%BA%90%E7%9A%84%E8%AE%BE%E7%BD%AE%E4%B8%8E%E8%BF%98%E5%8E%9F/

    相关文章

      网友评论

          本文标题:npm安装相关

          本文链接:https://www.haomeiwen.com/subject/ryjneqtx.html