React寒假研修班的一节课堂笔记

https://mobile.ant.design/docs/react/use-with-create-react-app-cn

在 create-react-app 中使用

create-react-app 是业界最优秀的 React 相关应用开发工具之一,本文档尝试以此工具来使用 antd-mobile 组件。

安装和初始化

在安装目录按shift+右键>选择在此处打开命令窗口

npm install -g create-react-app1 注意:工具会自动初始化一个脚手架并安装 React 项目的各种必要依赖,如果在过程中出现网络问题,请尝试配置代理或使用其他 npm registry。

create-react-app my-app  生成目录及相关文件2 3 4 cd my-app

进入创建的目录5 npm start

执行npm start6

浏览器自动弹出http://localhost:3000/的页面。