共计 328 个字符,预计需要花费 1 分钟才能阅读完成。
1.npm 切换成淘宝镜像:
npm config set registry http://registry.npm.taobao.org/
如果有的包下载不了, 再重置回 npm 源
npm config set registry https://registry.npmjs.org/
2. 安装 webpack:
npm install webpack -g
3. 安装 create-react-app 快速构建工具:
npm install create-react-app -g
4. 创建项目, 自动安装依赖:
create-react-app 项目名称
5. 选择项目文件夹:
cd 项目名称
6. 启动项目:
npm start
注意:
1. 有的时候由于 node 版本版本过低, 就会出现报错. 解决办法:
下载符合要求的高版本 node
正文完