react入门之使用 create-react-app 快速构建 React 开发环境

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

react入门之使用 create-react-app 快速构建 React 开发环境

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

 

上一篇:kubernetes系列09—Ingress控制器详解


下一篇:用maven建立一个工程5