美文网首页
npm 基础知识

npm 基础知识

作者: kyson老师 | 来源:发表于2022-03-28 16:57 被阅读0次

    npm install

    npm install 的过程:

    • 按 package json 中的依赖加载(缓存文件夹在:/Users/kyson/Library/Caches/Homebrew/downloads)
    • install

    install 过程过慢

    这是因为用的是国外源,如果想加速 install,可以使用淘宝源:

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

    验证一下,当前是否已经使用淘宝源成功 npm get registry 如果显示 http://registry.npm.taobao.org/ 代表成功。

    下载成功标志

    下载完成后,downloads 文件夹就会有很多文件。

    相关文章

      网友评论

          本文标题:npm 基础知识

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