1.1 配置环境
安装Nodejs
安装create-react-app
终端执行:
npm i -g create-react-app
安装VSCode插件
Simple React Snippets
Prettier - Code formatter
创建React App
在存代码的目录下创建react项目
create-react-app react-app
cd react-app
npm start # 启动应用
这里的create-react-app太慢则使用npm config set registry https://registry.npm.taobao.org
修改镜像源