Home > Mobile >  Which language should i use for store the test data?
Which language should i use for store the test data?

Time:12-29

I will create an mobile app for my capstone project. Firstly, we will implement an app and fix the phone on the wall like smart house systems.This app will measure seismic waves. After we measure the data, we will store and show with graphs etc. in a web app. Here is my question, We aren't very good at this actually, how we can build this app, which language is best for us? Can it be done with just react and sql?

CodePudding user response:

Well, the short answer is yes.

Though my recommendation, as a developer who's worked with numeraous frameworks and languages, would be Vue instead of React as it is much more beginner friendly paired with php written backend, not only because of its pretty easy to get into, but it can also be deployed on practivally any type of server or webhost.

I once made a file-system db with 30 lines of code storing .json files. though in your case sql would be much more suitable, but would require a bit more than that.

  • Related