赞
踩
Node.js官网:https://nodejs.org/en/
下载之后按默认选项安装好 重启电脑即可自动完成配置
国内使用 npm 速度很慢,可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm。
①使用 win+R 输入 cmd 打开终端
②依次输入以下命令
npm install -g cnpm --registry=https://registry.npmmirror.com npm config set registry https://registry.npmmirror.com③使用 create-react-app 快速构建 React 开发环境
cnpm install -g create-react-app create-react-app my-app cd my-app/ npm start
出现如上界面即为配置成功~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。