PRLP Pattern

In order to make sure our application can load as efficiently as possible in difficult conditions, we can use the PRPL pattern which focuses on four main performance considerations:

When we request for a webpage the server first returns a HTML page, and upon parsing of the page whenever there is a requirement for any other resource the browser again request the server for that resource. More request means more HTTP roundtrips. Having to repeatedly request the resources isn't optimal, as we're try to minimize the amount of round trips between the client and the server!