CHAQ
There are lots of ways to build a web application.

But, let's unfold the one you're using right now, by finding simple, significant, and revealing patterns, in order of use, that can be used universally in all webapps.
Central Handler / Action Queue
(1) every webapp needs to:

(a) HARMONIZE with its ENVIRONMENT, that is, the browser ...

(b) and ensure a central point of origin for all its actions.

One solution is:
A queue of actions processed by a central handler.
Any webapp must return control to the browser after asking it to do something. Many frameworks hide this from you. But the result is often the same: unnecessary and confusing scattering of control flow among listeners and setTimeouts. A central origin for all action begins solve this problem.
NEXT
Original site