方案一: 直接下载使用
方案二:本地搭建React的开发运行环境
步骤1:确保你电脑上安装了最新版本的Node.js。 Node.js安装教程
步骤2:安装淘宝镜像(国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm)
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ npm config set registry https://registry.npm.taobao.org
这样就可以使用cnpm命令来安装模块了: $ cnpm install [name]
步骤3:使用 create-react-app 快速构建React开发环境
$ cnpm install -g create-react-app
$ create-react-app my-first-react-app
$ cd my-first-react-app/
$ npm start
参考网址:
网友评论