Long description

Back

Inputs to Ticket App:

order.

search.

home.

browse.

login.

cart.

Ticket App

U I-Related Functionality Markup, C S S, J S, Server-Side).

Business Logic Functionality (J S, Server-Side).

Data Access Functionality (Server-Side).

The functionality of the entire web application is conceptually one single application (even if, for instance, it is broken down into separate P H P pages).

Unlike the separate P H P pages, it's not uncommon for a Node web application to actually be a single application.

Regardless of whether the application is split across separate page processes (P H P) or a single monolithic process (Node), the code base is large as it encom- passes the entire functionality of the application.

The number of developers needed for monolithic application grows significantly as size of application grows.

Typically, a monolithic application makes use of a single database for all of its functionality.

The schema for such a database must be very carefully defined and must stay relatively immutable.

It is more difficult to use C I slash C D techniques with this type of application architecture.

Back