美文网首页
yarn VS npm

yarn VS npm

作者: 2f1b6dfcc208 | 来源:发表于2018-05-11 12:09 被阅读137次

    yarn的进步

    • 并行安装,速度较npm快
    • 版本号锁定,完整性检查
    • 缓存机制更好(已安装的包可离线安装)
    Yarn Npm
    yarn init npm init
    yarn npm install
    yarn global add xxx npm install xxx -g
    yarn add xxx npm install xxx --save
    yarn add xxx --dev npm install xxx --save-dev
    yarn remove xxx npm uninstall xxx --save(-dev)
    yarn upgrade xxx npm update xxx
    yarn run xxx npm run xxx

    相关文章

      网友评论

          本文标题:yarn VS npm

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