• yarn 基本用法


    1、初始化一个新的项目

    yarn init

    2、添加一个依赖包

    yarn add [package]
    yarn add [package]@[version]
    yarn add [package]@[tag]

    3、安装所有的依赖包

    yarn 或者 yarn install

    4、npm 与 yarn命令比较

    NPMYARN说明
    npm init yarn init 初始化某个项目
    npm install/link yarn install/link 默认的安装依赖操作
    npm install taco —save yarn add taco 安装某个依赖,并且默认保存到package.
    npm uninstall taco —save yarn remove taco 移除某个依赖项目
    npm install taco —save-dev yarn add taco —dev 安装某个开发时依赖项目
    npm update taco —save yarn upgrade taco 更新某个依赖项目
    npm install taco --global yarn global add taco 安装某个全局依赖项目
    npm publish/login/logout yarn publish/login/logout 发布/登录/登出,一系列NPM Registry操作
    npm run/test yarn run/test 运行某个命令
     


  • 相关阅读:
    轻松完成mysql4.1与mysql4.0数据库转换备份
    MYSQL数据迁徙tips,ORA00907: missing right parenthesis
    viking病毒再次感染公司LAN
    [恢]hdu 2032
    [恢]hdu 2042
    [恢]hdu 2033
    [恢]hdu 2039
    [恢]hdu 2029
    [恢]hdu 2010
    [恢]hdu 2016
  • 原文地址:https://www.cnblogs.com/mengfangui/p/8953432.html
Copyright © 2020-2023  润新知