首先安装好GIT和nodejs,安装好nodejs同时也安装好了npm
这是使用Facebook开发的reate-react-app 来快速创建一个 react 项目:
1、# 安装 create-react-app 命令,如果已将安装请忽略
??????> npm install -g create-react-app
2、# 创建 react项目
??????> create-react-app my-react-app
3、# 启动项目( create-react-app 真的超级方便)
? ? ? >?cd my-react-app && npm start
4、#?开始打包react项目
? ? ? >?npm run-script package?