Find an easy web server framework for mobile game [closed] - javascript

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I need a web server to provide api interface like login/ranking for a mobile game, which web framework should I use, I primary program C++ before.

You should try out Firebase (https://www.firebase.com/) if you're looking for something relatively easy to store game data with. If you're looking for something to manage logins and storing simple data, either Twitter's Fabric (https://get.fabric.io/) and AWS Cognito (https://aws.amazon.com/cognito/) can also be used as well

Related

is ajax a backend technology to fetch data? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I want to know if ajax is a backend technology to fetch data or it's only considered as a frontend technology. I've searched for it in google but did not get any clear and straight answer.
Ajax is not a technology.
It is terminology given to the act using JavaScript embedded in a webpage (client-side code) to make an HTTP request (to a backend) and processing the response without leaving the page.

Which technologies should I use to query a SQL Database with Javascript in local? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have a basic knowledge of SQL and a basic knowledge of JS, mostly from school. I'm looking forward a way to create a HTML/CSS/JS webpage in local to query (select/insert/update) a SQL Database, but I saw a lot of different ways to do it. I need some help to get through the vastity of all those info. Which are the easiest ways to achieve my goal and which are the most up-to-date ones today?
Try node.js is you prefer JS on server. It has loads of libraries allowing connections to pretty much all databases out there.
There are very helpful tutorials on youtube showing how to start. Here is one of them.

Javascript library for mysql interaction into the browser [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
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?
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.
You can see here why
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.

Tool/solution for handle and catch error in app [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking after tool/solution that will catch and handle errors in my app.
My application is in Ionic1. I expect from the solution to trace after the errors from the bundle.js and lead to the source code (through the sourceMap). Obviously I would like to send more data and parameters regarding the errors.
Does anyone have any suggestions?
I prefer free tools and lightweight solution.
Thanks.
Sentry is a system that helps you organize your exceptions using a web application. You can setup an account on getsentry.com or install it on your own server. You will need to create a new project and obtain the API key to interact with your application.

ReactJS + Flux + PHP Sample? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for an example that uses ReactJS+PHP (client-server side) which make uses at the same time of the architecture FLUX?
Any recommendation?
Thanks in advance.
The flux architecture can work with PHP without any problem, since all the flux architecture is implemented in the javascript at client side. And all the communication with the server can build in simple jsons.
So basically you can look for any flux example with Node.js & just implement all the data call in PHP.
The only problem with the PHP server approach is that you won't be able to implement server-side react rendering in PHP server. And if you interesting in this feature you should build your server in Node.js.

Categories