用 npx 命令创建 react 项目,提示 npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm error While resolving: jxs1@0.1.0 npm error Found: react@19.0.0 npm error node_modules/react npm error react@"^19.0.0" from the root project

举报· 727 次点击
登录 注册 站外分享
6 条回复  
qweruiop 小成 2024-12-8 20:45:31
今天遇到同样的问题了。。。用 vite 吧。。。
Rust2015 楼主 小成 2024-12-8 19:19:36
@importmeta 还是 npm init vite@latest 靠谱 当然这个命令也还行:npm create vite@latest my-react-app --template react
importmeta 初学 2024-12-8 18:20:59
create-react-app 这东西早就废弃了, 里面的配置早就落伍了. 现在最简单就是用 Vite, 不少外国人也用 Vite, 如果想自己搭就选 Webpack Rspack 这种东西自己写配置, 想用阿里系就用 Umi 之类的.
Rust2015 楼主 小成 2024-12-8 17:29:42
不知道,怎么搞的命令一上来就是 react 19 好像 react 19 并没有全面铺开 我尝试着降级也没办法
Rust2015 楼主 小成 2024-12-8 17:27:50
vite 是可以,但是项目结构不一样,当然,也能用 下面的是原生的,就是用 npx 命令创建的 my-react-app/ ├── node_modules/ # 项目依赖 ├── public/ # 公共文件夹 │ ├── index.html # 应用的入口 HTML 文件 │ ├── favicon.ico # 网站图标 │ └── ... # 其他静态资源 ├── src/ # 源代码文件夹 │ ├── assets/ # 静态资源(如图片、字体等) │ ├── components/ # 可重用的组件 │ ├── pages/ # 页面组件 │ ├── hooks/ # 自定义 Hooks │ ├── context/ # React Context API │ ├── services/ # API 服务和请求 │ ├── utils/ # 工具函数 │ ├── App.js # 主应用组件 │ ├── index.js # 应用的入口文件 │ └── ... # 其他源代码文件 ├── .gitignore # Git 忽略文件 ├── package.json # 项目依赖和配置 ├── README.md # 项目说明文档 └── ... # 其他配置文件(如 ESLint 、Prettier 等) 而,用 vite 创建的 index.html 的这个入门文件暴露在 scr 目录,具体有什么区别,不知道
jackge0323 小成 2024-12-8 17:15:12
现在不都是用 vite 吗?
返回顶部