UP | HOME

创建 Antd 项目

Table of Contents

1 安装 nodejs

直接去 nodejs 官网下载并安装 nodejs

$ node --version
v12.19.0

2 安装脚手架和 yarn

直接使用 npm 安装对应的包

npm install -g create-react-app yarn

3 创建 react 项目

创建一个项目名为 reactapp 的项目

create-react-app reactapp

引入 antd 包

cd reactapp
yarn add antd

4 启动项目

yarn start

Last Updated 2020-10-17 Sat 23:33. Created by Jinghui Hu at 2020-10-17 Sat 23:25.