我可以将 meteor + react.js 用于移动应用程序吗?

Can I use meteor + react.js for mobile apps?

我有一个问题。我可以使用 meteor 和 react.js 为 Android 和 IOS 创建移动应用程序吗?有没有人在生产中有这样的应用程序?谢谢!

看看这个包:https://github.com/reactjs/react-meteor

它应该允许在流星中集成 reactjs。还有流星allows you to create mobile apps

Meteor 1.2 与 React 完全兼容。

只需使用 meteor add react 将 React 与您的 Meteor 应用集成。

然后正常开发你的应用程序。

最后要在 iOS 模拟器上查看您的应用 运行 使用:

meteor install-sdk ios
meteor add-platform ios
meteor run ios

对于android模拟器使用:

meteor install-sdk android
meteor add-platform android
meteor run android

之后您应该会看到一个带有您的应用程序的模拟器。

如需更多参考,请查看此 link (https://www.meteor.com/tutorials/react/creating-an-app)。