Data sharing between ReactJs/Node app an Flutter mobile app - reactjs

Please, I'm planning to design a Web App with ReactJs/Node then its mobile version with Flutter.
From your experiences, can you advise me a way of data sharing between these stacks?
Thanks.

The best way is to create REST or GraphQL API using nodeJS so that you can access it both from the React and Flutter app.
Creating a Secure REST API in Node.js
Creating A GraphQL Server With Node.js And Express

Related

Real-Time chat app using laravel as backend API and react js as frontend

is it possible to make realtime chat app with laravel and react js
I already made the api for creating conversation and sending/getting messages
how can I make the communication between backend and frontend realtime ?
You can use Laravel Echo https://laravel.com/docs/7.x/broadcasting and use socket.io to handle the communications with the frontend but if I would recommend using a better stack for a chat, you can easily set up your own https://www.ejabberd.im/ Server :) and you will get a more reliable chat

React Native and Firestore

I am beginner on firebase and need some help with project decision. I am building a react native app for someone and for the database I was thinking of using firebase, but when I was going through the docs I realized that firestore offers Backend Service, does this mean I don't have to use any framework for the backend. I was originally planning to use Django but if firestore provides backend service, it will provide lot more ease to the project. Can anyone give me an explanation on this ?
You can indeed directly connect your ReactJS application to Cloud Firestore, bypassing the need for your own server. To secure the application you'd use Firebase's server-side security rules, which allow you to control who can read and write what data. This is of course extra important, since you're opening up the database for direct access from the client applications, and the rest of the internet.
To access Firebase from React Native, many developers use the react-native-firebase library, which wraps more Firebase services than the JavaScript SDK does.

Is it possible to work with front react with axios and back java dynamic web with jersey?

I’m developing a web application using react and java JEE. Is it possible to connect via react refux, axios with backend. I’m using java dynamic web with jersey for my backend.
Can you suggest any technology?
Yes you can. You have to choose the technology based on your requirements.

Independent front-end and back-end Application with Relay,React JS and Graphql Application

In my Project, we are using the React, Relay technologies from front-end, for service we are using Graphql technology.
Both are independent Applications.
Based on this https://facebook.github.io/relay/docs/guides-network-layer.html
Communicating the both frontend and backend.
Can you please give any sample for the network-layer application.
Here a example: link Did you think of this?

moble app deploy in Ccomonsere

hi i develope a mobile app with phonegap frame work and html5,erything works fine but for future exist i need to connect my app to server db to make app multi-user. rit now i just create a local storage by using js which store all the user data in perticular local storage? what are the options i have to make the db server connected do web services work with this if so what kind of service i need to use. itried for few web services but all they are related to web applications. plzz help me thanku
Your phonegap App is like a Web App. The advantage that your phonegap app has over Web App, is that you can access native features (camera, Contact, etc..) of the phone with phonegap, which is not possible with a pure webapp. So all the backend services that you can use with web app can be used by your phonegap app.
Now which web servcies you want to uses depends upon your preference.
You can use web services or RESTful service for getting data from the backend.

Resources