如何创建react项目react create react app create: command not found. ➜ react
时间: 2024-11-28 21:13:54 浏览: 20
创建React项目的最常用工具是`Create React App`,它是由Facebook官方推荐的一种快速入门React开发的方式。如果你遇到"command not found"错误,说明你的系统中还没有安装`create-react-app`。以下是安装并创建React项目的步骤:
1. **确保已安装Node.js**:首先,你需要在你的计算机上安装Node.js。访问https://nodejs.org/ 下载并安装最新版本。
2. **全局安装create-react-app**:打开终端或命令提示符,运行以下命令(在macOS/Linux上):
```
npm install -g create-react-app
```
或者(在Windows上):
```
npx create-react-app --global
```
3. **创建新项目**:确认安装成功后,你可以创建一个新的React应用。在你想放置项目的地方,输入以下命令(替换'three-counter-app'为你想要的项目名):
```
npx create-react-app three-counter-app
```
这将自动生成一个名为`three-counter-app`的新文件夹,其中包含基本的React项目结构。
4. **进入项目目录**:创建完成后,导航到项目目录:
```
cd three-counter-app
```
5. **启动开发服务器**:
```
npm start
```
现在可以打开浏览器访问http://localhost:3000 查看你的React应用正在运行。
阅读全文