gpt4 book ai didi

reactjs - react native 开始给出无效的正则表达式无效错误

转载 作者:行者123 更新时间:2023-12-03 13:15:19 26 4
gpt4 key购买 nike

我按照以下链接开始使用react-native

Getting started with react native

我尝试在没有博览会的情况下创建 native 应用程序所以我根据文档我遵循了以下命令

npm install -g react-native-cli
react-native init AwesomeProject

运行android命令后

react-native run-android

它在模拟器上给了我以下错误

enter image description here

所以我使用启动命令来运行 Metro 服务器

react-native start

这个命令在控制台中给了我另一个错误

enter image description here

最佳答案

使用某些 NPM 和 Node 版本的 Metro 存在问题。

你有两种选择:

<小时/>
  • 替代方案 2:转到 npde_modules 文件夹中的文件:\node_modules\metro-config\src\defaults\blacklist.js并更改此代码:
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];

对此:

var sharedBlacklist = [
/node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];

Please note that if you run npm install or yarn install you'll need to change the code again.

关于reactjs - react native 开始给出无效的正则表达式无效错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58117377/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com