create-react-app来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。
create-react-app 自动创建的项目是基于 Webpack + ES6 。
用create-react-app脚手架搭建react项目的2种方式:
//第1种
npx create-react-app myApp
//第2种
npm install -g create-react-app
create-react-app myApp
cd myApp
npm start
my-app/项目目录README.md node_modules/ package.json .gitignore public/ favicon.ico、index.html、manifest.json src/ App.css、App.js、App.test.js、index.css、index.js、logo.svg |