Is there any way to bring information from the database without using server side language?

2

I was evaluating the Zap Imoveis site to find out which languages and technologies are used on their site. I use Wappalyzer , a Chrome extension that shows the technologies used on any site.

Well, I noticed that on that site Wappalyzer did not show any server side language, I took a look at the code with the developer tools in Google Chrome and I also did not notice anything. The only framework I noticed was Bootstrap.

I believe that some language server side is needed to bring registered real estate from the database to be shown in frontend , or am I wrong?

Is there any way to bring the database information on the server to be displayed on the site in some other way without using some server side language? How to XML or JSON? And what would it be like?

What would be the most efficient way (time to load a large amount of data for the site pages) to display a large amount of DB data in frontend .

    
asked by anonymous 07.09.2017 / 20:52

1 answer

7

Does not exist. Any computing problem needs to be scheduled with a programming language .

In fact, the question arose because you are using inappropriate tools to perform an activity. You fell into the tale of "buy this product and see everyone without clothes". There is no such thing unless the person wanted to be seen naked. There are ways to get information from whoever they are given, not from whom they want to hide.

XML or JSON are not even programming languages . Without a programming language that does this only if the database gives the data ready in this format (without processing anything, comes raw what is already recorded in the database), but it would be reckless anyway to give direct access to the database. data.

    
07.09.2017 / 21:22