Software Design Pattern
Last Updated: 2021-11-19
JAMStack
PRPL Pattern
PRPL is a web site architecture developed by Google for building websites and apps that work exceptionally well on smartphones and other devices with unreliable network connections.
https://developers.google.com/web/fundamentals/performance/prpl-pattern/
PRPL stands for:
- Push critical resources for the initial URL route using
<link preload>
andhttp/2
. - Render initial route.
- Pre-cache remaining routes.
- Lazy-load and create remaining routes on demand.