Mac上React环境搭建
1、安装node,http://nodejs.cn/download/ 下载node
下载安装包后,双击完成安装
node -v 检查安装的node版本, 返回版本号即说明node已安装
2、安装全局create-react-app
Create React App是FaceBook的React团队官方出的一个构建React单页面应用的脚手架工具。它本身集成了Webpack,并配置了一系列内置的loader和默认的npm的脚本,可以很轻松的实现零配置就可以快速开发React的应用。
sudo npm install -g create-react-app
使用 create-react-app my_react 创建项目
如果项目创建失败
可以先单独执行以下命令安装react相关组件
npm install -g react
npm install -g react-dom
npm install -g react-scripts
然后再次执行create-react-app my_react 。
cd my_react
进入my_react后,再次执行以下命令:
npm start
Starts the development server.
npm run build
Bundles the app into static files for production.
npm test
Starts the test runner.
npm run eject
Removes this tool and copies build dependencies, configuration files
and scripts into the app directory. If you do this, you can’t go back!
We suggest that you begin by typing:
cd my_react
npm start
3、安装ant组件库
yarn add antd
相关资料:
1、https://ant.design/docs/react/recommendation-cn ant design 社区精选组件