Global web icon
stackoverflow.com
https://stackoverflow.com/questions/78129521/how-t…
How to deploy MERN project on Hostinger (web hosting)
I am new to web development and I have a Developed MERN web application which I want to deploy on my hostinger (web hosting). I cannot find any tutorial which teaches deploying on web hosting. there are tutorials which teach to host on VPS.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/51126472/how-t…
How to organise file structure of backend and frontend in MERN
The most basic structure would be to have a root folder that contains frontend and backend folders. Since you're talking about the MERN stack, you would have a package.json inside of your NodeJS backend environment and a package.json for your React side of things. Backend server and the frontend client are two totally separate things, so yes, they both have their own node_modules folders. On ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/62354249/best-…
Best way to store images in MERN stack web application
I am building a web application using the MERN stack (MongoDB, Express Server, ReactJS front end and NodeJS back end) and was wondering some good ways to store images from the back end. In the pas...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/66595631/not-a…
Not able to receive/set cookies in browser from backend in MERN app ...
I have a MERN app whose backend is hosted on Heroku and frontend on netlify. I am not able to see the cookies in the browser after deploying the app but it works fine on localhost. I think it is du...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/56135533/how-t…
How to connect admin dashboard to a MERN e-commerce app?
But because you said MERN stack, so I assume your first application is tightly coupled to your backend. If that's the case, you can either: Decouple the backend service as a public REST API, access the API for both frontend application. Add a new route to the existing frontend app, let's say /admin for your new application.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/54854594/how-t…
How to deploy MERN stack to a hosting service?
Your question: How to deploy Mern Stack to a hosting service? There are many options to deploy any nodejs based app but shared hosting is not an option. Use a service like vercel, heroku etc Use Managed Cloud services like Azure, AWS, Google Cloud platform etc. Acquire and setup a VPS Each has it's own tutorials and details.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/78771856/what-…
reactjs - What should my vercel.json config file to deploy my MERN ...
I am trying to deploy my MERN stack on vercel but I can't get much documentation on what the vercel.config file should contain. This is how my Vite (npm create vite@latest) MERN project is structur...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/74910508/real-…
Real-time notification feature in MERN stack
If it doesn't have to be so real-time (i.e. receiving notifications 1 minute after somebody liked the post is okay), you could also try (long)polling. However, since post-like table may contain a huge amount of data, constantly querying it is expected to result in bad performance on the server. Also, adding an extra column to mark if the user has been notified about a specific like is trivial ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/77081756/mongo…
node.js - Mongo DB connection Failing - MERN - Stack Overflow
Mongo DB connection Failing - MERN Asked 2 years, 2 months ago Modified 2 years, 2 months ago Viewed 213 times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/73980821/how-c…
How can I Integrate Python Scripts into a MERN stack
0 I am thinking of adding python scripts for some data analysis but I am using a MERN stack for my application. An example of what I am thinking- My python script will do some data analysis when an endpoint is being called. ../api/dopythonhere and return a JSON object What would be the best/efficient way to implement python with a MERN stack?