快速构建 React 开发环境

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

create-react-app 是来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。

create-react-app 自动创建的项目是基于 Webpack + ES6 。

1、执行以下命令创建项目:
$ cnpm install -g create-react-app
$ create-react-app my-app
$ cd my-app/
$ npm start
报错,黑线-------解决:

报错.png

一顿懵操作之后:

成功.png

2、在浏览器中打开 http://localhost:3000/ ,效果如下图所示:hapapy

开心.png

你可能感兴趣的:(快速构建 React 开发环境)