Posts

Showing posts with the label meteor

React native meteor vs react native and rest api

I am architecting for new application and finalized to use react for web and react native for mobile and graphQl. Now I am wondering whether to build a server using node and express or to use Vulcanjs and build web application using meteor, react and graphQl? My main concern is about mobile application, if meteor goes well with react native? Is it better to do server side rendering for mobile application? react-native-meteor works fine with React Native app with Meteor backend. There is no need of server side rendering for Mobile Application with React Native. If you are using Meteor and React as web application you can reuse the logic of most of the components in React Native application. react-native-meteor will ensure the reactivity of mobile application and this package won't require any REST APIs to work with Meteor backend.

React JS v React Native

I am looking to decide what to you to style my meteor application with which I plan to launch solely as an android and iOS app. It will not be made into a website. My understanding is react native is the same as reactjs but geared towards mobile apps. Is this this true? If so do you recommend using react native instead of reactjs for making apps or does reactjs still offer greater benefits? Also, is material ui or anything like that needed when using react native? React-native shares a mental model with React and some key code, but is significantly different. Here's a few points/differences to consider: Runs w/ bridged-code that executes native functionality not normally callable by or with JavaScript. React and react-dom are meant to run in a DOM environment (react-dom can run server-side, but the apps are meant to run and be interacted w/ primarily in a browser context). It allows you share code between platforms, but you usually can't and shouldn't e...

React-Native-Meteor update React-Native 0.33

I'm running a Meteor server and a React-Native client (working in iOS mainly for now). Since I updated to React-native 0.33 the MeteorListView Component throws the following error: My 'UserDos' follows the example of InProgress-team/react-native-meteor. When replacing the MeteorListView with a regular ListView everything works fine. Is anyone experiences this issue or can pinpoint/direct me to solving the issue? Version "react": "^15.3.1", "react-native": "^0.33.0", "react-native-lock": "^0.4.0", "react-native-meteor": "^1.0.0-rc15", "react-native-scrollable-tab-view": "^0.6.0", "react-redux": "^4.4.5", "redux": "^3.6.0", "redux-thunk": "^2.1.0", Fixed by reinstalling macOS and fresh install of React-native and dependances. Bit extreme solution but probably some complications with d...