1
When I discovered the SPA style I was very excited, but I went to research on some frameworks that do this, I saw that are mvc’s, but totally aimed at the client(front) and this did not like much, because my focus is to delve into the server side.
I understood that the back would only serve to serve data and persistence(basic) as a Rest and the others in the client.
I want to know if you can use one of these frameworks only the "view" part (single pages application)? To be able to create Spa interfaces and still be able to keep part of the responsibility in the back, middle to middle.
I have no knowledge about these frameworks as Angularjs and etc, someone more experienced could guide me.
Grateful.
The point is that the best-selling advantage of the SPA is to take the server side processing and put in the client! The acronym page is only reached because this processing is always in the client, if you submit something to the server will be rendered a new page based on the server response, understand? There is no way to leave the view alone because the view itself features decreased server-side processing.
– Giuliana Bezerra
What if it was in the case of Vue.JS that the focus is to be the MVC view? What I want is to be able to include SPA interfaces in my applications in a way that doesn’t drastically change the development. Leaving similar as it was, only with two technologies, see in the view taking care of the interface(spa) and the "some back-end technology" taking care of the model and controller, providing the data and business rules. Keeping my focus that is the back-end.
– G. M4rc14L