【react学习笔记-1】创建react项目

2019-08-21  本文已影响0人  你若像风

通过 npm 使用 React

使用淘宝定制的 cnpm 命令行工具代替默认的 npm:

npm install -g cnpm --registry=https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org

使用

npm config get registry
或 npm info express

来验证是否成功。

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

create-react-app 是来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。
create-react-app 自动创建的项目是基于 Webpack + ES6 。
执行以下命令创建项目:

$ cnpm install -g create-react-app
$ create-react-app my-app
$ cd my-app/
$ npm start

在浏览器中打开 http://localhost:3000/ ,结果如下图所示:

image.png

执行 create-react-app my-app 的时候需要一些运气的,一次装不成功就多装几次。

上一篇下一篇

猜你喜欢

热点阅读