尝试安装react-native项目时出错



当我尝试创建新的react-native项目时命令:NPX react-native init myproject

我有以下错误:

erresolve重写对等依赖
npm WARN在解析时:react-shallow-renderer@16.14.1
npm WARN发现:react@18.0.0
npm WARN node_modules/react
npm WARN peer react@"18.0.0"from react-native@0.69.1
npm WARN node_modules/react-native
npm WARN react-native@"*">
npm WARN 1 more (use-sync-external-store)

要创建一个新的react应用程序,我通常使用npx create-react-app app-name作为JS和npx create-react-app app-name --template typescript,以防你想在TypeScript中开发它

删除安装在工作区中的全局react-native并重新安装:

  1. npm uninstall -g react-native-cli
  2. npm uninstall -g react-native
  3. npm install -g react-native
  4. npm upgrade -g

相关内容

  • 没有找到相关文章

最新更新