什么是yarn
Apache Hadoop YARN (Yet Another Resource Negotiator,另一种资源协调者)是一种新的 Hadoop 资源管理器,它是一个通用资源管理系统,可为上层应用提供统一的资源管理和调度,它的引入为集群在利用率、资源统一管理和数据共享等方面带来了巨大好处。
快速安装
1、Macos安装
curl -o- -L https://yarnpkg.com/install.sh | bash
2、Linux安装
# 以Ubunto为例
sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
# centos安装
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo -o /etc/yum.repos.d/yarn.repo
yum install yarn
3、Windows安装
# windows 下需要下载msi文件 ,下载地址:https://yarnpkg.com/latest.msi
npm install -g yarn
# 查看版本
yarn --version
如何使用
# 我们新建一个文件夹yarn测试下
yarn init
# 一路enter下去就行
# yarn add gulp-less
yarn add gulp-less
# 如果你要移除的话,可以使用yarn remove package_name 比如:
yarn remove gulp-less
# 升级更新某个依赖可以使用这个:
yarn upgrade [package]