在React Native中使用Overmind DevTools

时间:2019-11-10 11:00:37

标签: react-native expo

我无法使用React Native连接到Overmind Devtools。我使用Expo并通过LAN上的iPad连接到它。

根据this的帖子,由于它是Electron应用程序,应该可以从任何地方连接到Overmind Devtools,但我不知道如何实现。

在我的iPad上,我收到以下消息:

OVERMIND DEVTOOLS: Not able to connect. You are trying to connect to "localhost:3031", but there was no devtool there. Try the following:
   - Make sure you are running the latest version of the devtools, using "npx overmind-devtools@latest" or install latest extension for VSCode
   - Close the current tab and open a new one
   - Make sure the correct port is configured in the devtools

这很有意义,因为在iPad的本地主机上绝对没有运行Overmind Devtools,但是我不知道如何连接它。

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

您可以将配置传递给createOvermind并像这样指定主机和端口:

const overmind = createOvermind(config, { devtools: 'http://0.0.0.0:3031' })

relevant spot in docs