Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 592 Bytes

react-单车后台管理系统.md

File metadata and controls

31 lines (22 loc) · 592 Bytes

1 脚手架 yarn介绍

1.1 如何安装React脚手架

npm install -g create-react-app 全局安装react
create-react-app my-app 初始化一个项目 项目名是my-app

cd my-app
npm start

1.2 怎么使用Yarn

npm install -g yarn 安装yarn
yarn init 初始化项目
yarn add 安装一个包
yarn remove 删除一个包
yarn/yarn install 项目下下来 通过这个安装项目所需要的所有依赖

1.3 项目的插件安装

进入项目目录 cd imoocmanager
yarn add react-router 安装react路由
yarn remove react-router 移除react路由