Angular: How I Moved 90% GETs Into a Cacheable Shell Component

Neo Liu
3 min readJun 26, 2022
Photo by Aphiwat

For web applications, having a lot of similar GET APIs is normal, but creating them is repetitive and tedious for developers.

Inspired by Flutter’s everything is a widget concept, I was thinking if it is possible to encapsulate the whole flow of a GET API into a shell component, which will allow developers to flexibly pass the loaded data from the shell to…

--

--