记录 react的常用指令

1.引用axios
npm i --save axios

2.react路由
npm i --save react-router-dom

3.安装antd
npm install antd --save

4.安装antd图标
npm install --save @ant-design/icons

5.node.js清空缓存
npm cache clean -f

======================================
1.全局安装脚手架
npm i -g create-react-app

2.查看版本
create-react-app --version

3.创建项目
create-react-app myapp

4.进入启动项目
cd myapp 进入项目目录
npm start 启动项目

你可能感兴趣的:(react)