将 React Native 应用程序与 ReactJS 应用程序分开

Separate react native app from reactjs app

我在我的 React 本机应用中使用了 react native web

我可以在同一个地方使用相同的 React Native 和 React Native Web 代码吗?

目前,我的手机代码在 src\mobile 中,您可以在此处看到: https://github.com/amorenew/LifeMaster/tree/master/src

是的,react-native-web 使用 babel 将您的导入语句更改为在为 Web 编译时使用来自 react-native-web 的组件。

当您为移动设备编译项目时,组件会像往常一样从 react-native 导入。

我发现这个库非常有用

https://github.com/react-everywhere/re-start/tree/react-16

它有一个模板,只需一个简单的命令即可为 web、移动、桌面 electron 构建你的 repo

react-native init yourProjectName --template re-start