当我尝试创建新的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并重新安装:
npm uninstall -g react-native-cli
npm uninstall -g react-native
npm install -g react-native
npm upgrade -g