node全局安装说明(create-react-app)
Posted chenguiya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node全局安装说明(create-react-app)相关的知识,希望对你有一定的参考价值。
1、使用 create-react-app 快速构建 React 开发环境
国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ npm config set registry https://registry.npm.taobao.org
$ cnpm install -g create-react-app
$ create-react-app my-app
$ cd my-app/
$ npm start
以上是关于node全局安装说明(create-react-app)的主要内容,如果未能解决你的问题,请参考以下文章