I want to know how many ways we can get Server Database using JavaScript like using mongo db ,SQLite or any other ways to connect Server database
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re talking about client-side Javascript, there’s no way1.
You have to send messages (perhaps using AJAX or WebSockets) to scripts running on a server which will then connect to the database.
1 actually, there was WebDB for access to a local SQLite engine in the HTML5 specs, but it got deprecated.