react + redux + react-redux + react-router-dom (一) 项目搭建

发布时间:2023-10-12 09:15:22 浏览次数:110

创建项目

create-react-app 5.0 不再支持本地全局安装,且node版本需要14+

npx

npx create-react-app@5.0.0 react-app

npm

npm init react-app@5.0.0 react-app

Yarn

yarn create react-app react-app

项目结构及package.json如下:

image.png


自定义webpack配置

eject 暴露webpack配置

yarn eject

安装react-router-dom

yarn add react-router-dom

安装redux和react-redux

yarn add redux react-redux

启动项目

yarn start

打开浏览器localhost:3000,显示运行结果:




最新文章