Is there a good book resource for modular web application architecture?

I ask this question because of the Zend Framework. I really like it, but nonetheless, modularity is not very flexible. For example, many of us first create a default and administration module, but in fact it cannot be reused. In fact, the administrator should not be a module, but some paradigm that takes care of each side of the module (for example, the plug-in manager).

So, is there a good book on modular web application architecture?

PS sorry if this is a duplicate.

+4
source share
2 answers

Yes, there are several. But there is only one that is absolute, you need to read in the world of web frames:

Enterprise application architecture templates:

This is a de facto standard book with all the templates used through the Zend Framework and almost all other web frameworks. Front Controller, Router, Service Layer, all taken from this book.

You can find a good resume online at the Fowler website

0
source

Take a look at the Zend Framework 1.8 Zend Application Development .

There is a chapter on creating an administration module that you call "some kind of paradigm ...".

0
source

Source: https://habr.com/ru/post/1302574/


All Articles