在终端执行以下命令创建项目:
1、指定创建的项目位置(这里以桌面为例)
cd Desktop
2、创建 React 项目
npx create-react-app my-app
3、进入项目并启动
cd my-app
npm start
可以直接将项目文件拖入终端,输入 npm start 按回车启动
2023-12-26 21:57:09
cd Desktop
npx create-react-app my-app
cd my-app
npm start
可以直接将项目文件拖入终端,输入 npm start 按回车启动