MAC上安装React教程

时间:2025-01-20 16:16:55

React是由Facebook开发的用于构建用户界面的JavaScript库,采用组件化开发模式和基于声明式编程的方式来描述UI,可以提高代码可维护性和重用性。同时,React使用Virtual DOM技术来优化DOM操作的性能,适用于开发大规模的Web应用程序。

检查NodeJS环境

  1. 打开终端应用程序(Terminal.app)

  2. 输入以下命令来检查 是否安装

    node -v

    如果 已成功安装,则会显示安装的版本号

    1. testuser@testvm ~ % node -v
    2. v18.16.0
  3. 输入以下命令来检查是否安装了 npm( 包管理器)

    npm -v

    如果 npm 已成功安装,则会显示安装的版本号

    1. testuser@testvm ~ % npm -v
    2. 9.5.1

安装NodeJS环境(已经安装,请忽略)

前往 官网( )下载 安装程序到本地,然后本地运行该安装程序并按照指示进行安装。

安装创建React项目

  1. 在终端进入到个人项目空间

    cd /Users/testuser/react
  2. 在个人项目空间创建一个名为 "first-react-app" 的React 应用程序

    npx create-react-app first-react-app
    当看到成功信息,表明React项目和所依赖的安装包都已准备完成
    1. Success! Created first-react-app at /Users/testuser/react/first-react-app
    2. Inside that directory, you can run several commands:
    3. npm start
    4. Starts the development server.
    5. npm run build
    6. Bundles the app into static files for production.
    7. npm test
    8. Starts the test runner.
    9. npm run eject
    10. Removes this tool and copies build dependencies, configuration files
    11. and scripts into the app directory. If you do this, you can’t go back!
    12. We suggest that you begin by typing:
    13. cd first-react-app
    14. npm start
    15. Happy hacking!

  3. 进入到React项目目录,执行启动命令

    1. cd first-react-app
    2. npm start

    启动完成后,会在默认浏览器中打开React 应用程序

  4. 停止React应用程序。在点击终端运行页面,使用组合键 ‘control’ + ‘C’ 或者 ‘command’ + ‘C’ 即可停止React应用程序。

完成了上述步骤,则可以证明MAC电脑 和 React。可以*选择开发工具开发了。