currently, I am using firebase for the backend but is there any path I have to learn to do backend without using firebase since it's limited free
CodePudding user response:
Yes you can create backend with nodejs and connect nodejs with your flutter app. There are plenty of resources for learning how to connect nodejs backend with flutter app
CodePudding user response:
Yes. You can use Python, node js, PHP-laravel.. It depends on the projects. According to the project, you can choose the backend.
CodePudding user response:
"backend in flutter" ? , Flutter is framework in which we use dart programming language so the question is wrong. But perhaps you want to ask something else, which I was also exploring during my initial years.
- For realtime database you can use mongo with polling (with or without even any server since you can even poll and crud in database with flutter itself).
- For firebase cloud functions you either make your own APIs (with any backend say nodejs , Django , php..) and call them with Cron jobs or use mongo trigger.
- For app performance monitoring , you first need to take data from your app itself and then store it in database and then need to make a web panel for showing that data in interactive manner.
- Firebase hosting can't be your case so skipping it.
I hope that clears your doubt.