Welcome to the final phase of class. This week we'll learn some final libraries we'll regularly use as well as polish projects we haven't done so well in the prior weeks.

Review

In full stack development it's help to contemplate the flow of data.

The flow of full stack will always be from Client > Server then Server > Client.

Client > Server

At a high level, when users are inserting data into our database, the flow will be like the following.

Input > Handler > Submit Handler > Action > API > Controller > Handler > Database

Server > Client

At a high level, when our user is requesting data the flow of the data wil lbe like so.

Database > Handler > Controller > REST response > Action > Reducer > Component > User Interface