Blog
For my study note mostly…
Category: Web
-
Today, I was working on CICD pipeline automation. But before I describe what I did, I want to describe the situation I was in. So first of all, I had these three deploy-able link which serve the purpose of following: For preview, I noticed when I have multiple PR into main, only the last PR…
-
Tree Reconcilation React calculate what the DOM should look like (called “Work-In-Progress”) and what the DOM currently looks like (called “Current”), in virtual DOM DOM (js object). Those were represented as two branches of object trees. After making those trees, React compare those two branches and find minimum number of step required to make WIP…