一、安装create-react-app
1、在全局环境中安装create-react-app
npm install -g create-react-app
2、在您所需要的目录(盘)下生成一个项目 【前提是第一步安装成功】
create-react-app my-app
二、开发环境运行项目及编译后发布到线上环境
1、进入my-app的根目录
cd my-app/
2、执行下面的命令即可在本地开发环境中运行项目
npm start
3、如需要发布到线上环境则执行下面的命令进行编译得到build文件,然后将build文件发布到线上服务器
npm run build
4、如要在本地查看线上环境的效果可以运行下面的命令
npm install -g pushstate-server
pushstate-server build
参考:https://blog.csdn.net/qtfying/article/details/78665664