Whether it applies to the React application structure from JS?
Hello! Now I am learning to build applications in pure JS.
Question. In pure JS application is implemented using modules. Module UI module data structures the module controller. How is it relevant in frameworks?
I would like to understand how to hone this model. Because I heard that in REACT + REDUX is implemented differently. Or these modules are not much to pay attention immediately go to REACT?
2 answers
pure knowledge of js is important but the structure of the project may miss out because of a bunch of REACT + REDUX is usually a different structure.
React is only the View layer of the application, so the rest of the logic you can arrange as you want. That react+redux is the most popular stack, does not mean that it is the right architecture.
It is possible to implement a classical MVC app using React in frontend. But then again, consider the application. If it is simple enough, the extra abstraction can be to anything.
Find more questions by tags ReactJavaScript