导入 NodeSource 的 RPM 仓库:
首先,您需要从 NodeSource 设置 Node.js 仓库。以下是如何设置 Node.js 14.x 仓库(这是一个长期支持(LTS)版本):
curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -
如果您希望安装其他版本的 Node.js,只需将上述 URL 中的 14.x 替换为您想要的版本号,例如 16.x。
安装 Node.js 和 npm:
sudo yum install -y nodejs
验证安装:
node -v npm -v
安装项目依赖:
npm install
检查全局依赖:
npm install -g react-scripts