赞
踩
常规的React项目需要使用npm(或yarn)作为包管理器来对项目进行管理。并且React官方为了方便我们的开发,为我们提供react-scripts包。包中提供了项目开发中的大部分依赖,大大的简化了项目的开发。
根目录
- public
- index.html (添加标签 <div id="root"></div>)
- src
- App.js
- index.js
进入项目所在目录,并执行命令:npm init -y 或 yarn init -y
npm install react react-dom react-scripts -S
或
yarn add react react-dom react-scripts
npx react-scripts build
编译创建项目打包(不推荐)
运行npx react-scripts start
启动项目(初次启动需要输入y确认)
或者将react-scripts start
设置到package.json
的scripts选项中,然后通过npm start
启动(初次启动需要输入y确认)”scripts”: { “start”: “react-scripts start” }
index.html
index.js
App.js
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。