使用create-react-app 快速构建react开发环境
create-react-app 是来自于Facebook,通过该命令无需配置就能快速构建React开发环境。
$ cnpm install -g create-react-app
$ create-react-app my-app
$ cd my-app/
$ npm start
在浏览器中打开 http://localhost:3000/ ,结果如下图所示:
使用create-react-app 快速构建react开发环境
create-react-app 是来自于Facebook,通过该命令无需配置就能快速构建React开发环境。
$ cnpm install -g create-react-app
$ create-react-app my-app
$ cd my-app/
$ npm start
在浏览器中打开 http://localhost:3000/ ,结果如下图所示: