node.js+yarn环境centos7快速部署

首先,您需要在Node.js官方网站提供的系统中启用node.js yum存储库。您还需要开发工具来构建要在系统上安装的本机加载项。

$ yum clean all && yum makecache fast
$ yum install -y gcc-c++ make
$ curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash -
$ yum clean all && yum makecache fast
$ yum install -y gcc-c++ make
$ curl -sL https://rpm.nodesource.com/setup_10.x | sudo -E bash -
yum -y install nodejs

在 CentOS, Fedora 和 RHEL 操作系统上,你可以通过我们的 RPM 包仓库来安装 Yarn。

wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo
yum install yarn

yarn -version
node -v
npm -v
原文地址:https://www.cnblogs.com/aloneysir/p/13043898.html