I'm creating a client side application that will rely only on a remote mysql database, all the project use vuejs. Is there any js library that can work into the browser to save and retrive data on the remote mysql db?
Asked
Active
Viewed 91 times
1 Answers
0
Well, the simplest answer is "you should never do it".
Because do this on the "client side" is not secure, you will expose sensitive information about your database, and this is not okay.
However, if you really want to (just don't), here is, is really old but is because is not a good thing to do, but you can try.

David Nithael Torres Lima
- 445
- 2
- 10
-
I don't need to store anything on client side, I will have a remote mysql database. I need a way to talk with it using javascript, maybe you've misunderstand the question. – alfaun0 Aug 13 '20 at 05:57
-
I understood you, just check the "here is" link, there's the lib to do this. But you have to expose information like user and password by example, this is the sensitive information that I was talking about. – David Nithael Torres Lima Aug 13 '20 at 06:10