如何在Ubuntu 20.04 LTS上安装ReactJS

Reactjs Logo
Reactjs Logo

Ubuntu 20.04 LTS Focal Fossa上安装ReactJS

步骤1.首先,通过apt在终端中运行以下命令来确保所有系统软件包都是最新的。

sudo apt update
sudo apt upgrade

步骤2.安装Node.js。

现在,我们将Node.js PPA添加到您的Ubuntu系统:

curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -

接下来,运行以下命令以安装Node.js

sudo apt install nodejs

您还可以在Ubuntu系统上安装Yarn软件包管理器:

npm install -g yarn

步骤3.创建一个新的React.js应用程序。

您可以使用以下命令之一创建React.js应用程序:

yarn create react-app myreactapp

成功创建应用程序后,您将在屏幕上看到长结果:

Success! Created reactproject at /opt/reactproject
Inside that directory, you can run several commands:

  npm start
    Starts the development server.

  npm run build
    Bundles the app into static files for production.

  npm test
    Starts the test runner.

  npm run eject
    Removes this tool and copies build dependencies, configuration files
    and scripts into the app directory. If you do this, you cant go back!

We suggest that you begin by typing:

  cd reactproject
  npm start

一旦创建了React应用程序。这将在当前目录中使用项目名称创建一个文件夹。切换到该项目并运行yarn start以启动应用程序:

cd myreactapp
yarn start

输出:

Compiled successfully!

You can now view myreactapp in the browser.

  http://localhost:3000

Note that the development build is not optimized.
To create a production build, use yarn build.

恭喜你!您已经成功安装了ReactJS。感谢您使用本教程在Ubuntu 20.04 LTS Focal Fossa系统上安装ReactJS。如需更多帮助或有用信息,建议您访问ReactJS官方网站

原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun42399.html

(0)
打赏 微信扫一扫不于多少! 微信扫一扫不于多少! 支付宝扫一扫礼轻情意重 支付宝扫一扫礼轻情意重
上一篇 2021年3月17日
下一篇 2021年3月17日

相关推荐