npm操作

作者: AC编程 | 来源:发表于2024-09-22 15:58 被阅读0次

    一、安装Node.js

    下载Node.js,https://nodejs.org/http://url.nodejs.cn/download/

    二、npm切换淘宝镜像指令

    切换到淘宝镜像

    npm config set registry https://registry.npm.taobao.org
    

    查看地址

    npm config get registry
    

    三、安装nrm、cnpm

    3.1 安装nrm方便切换数据源
    //全局安装nrm
    npm install -g nrm
    
    //查看可选的源。 其中,带*的是当前使用的源
    nrm ls
    
    //切换到taobao源
    nrm use taobao
    
    //测试相应源的响应时间
    nrm test
    
    3.2 安装cnpm
    npm install -g cnpm --registry=https://registry.npmmirror.com
    

    相关文章

      网友评论

          本文标题:npm操作

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