TSTarun Singhintarunsingh.hashnode.dev路Aug 11, 2021 路 7 min readServer-side rendering(SSR) with React[Part-2]Hello folks 馃憢, In this article, you'll learn how you can actually server-side render a React App. This is Part 2 of Server-side rendering(SSR) with React[Part-1]. It is recommended that you go through Part 1 of this article and while you're there d...00
TSTarun Singhintarunsingh.hashnode.dev路Jun 30, 2021 路 4 min readServer-side rendering(SSR) with React[Part-1]Contents Client-side-rendering Drawbacks Server-side rendering Drawbacks Conclusion This article is not for beginners, I'll assume that you save some experience working with React. The article consists of two parts, this is Part-1 of the article. T...01I
TSTarun Singhintarunsingh.hashnode.dev路Mar 15, 2021 路 4 min readEvent Delegation in Javascript.Event Delegation is not a new trick, it has been in use in several big projects already. So let's see what do we mean by event delegation. Event delegation is a technique of adding event listeners to a parent element instead of adding it to the desce...00
TSTarun Singhintarunsingh.hashnode.dev路Feb 26, 2021 路 3 min readThe mighty "Event Loop"If you have some experience with JavaScript you would have surely heard the word "Event Loop". Event Loop is an important concept of javascript language and interviewers' favorite question. Javascript is synchronous, blocking in nature. Javascript ...00
TSTarun Singhintarunsingh.hashnode.dev路Feb 24, 2021 路 4 min readPlaying with the "this" keyword.The concept that most JavaScript developers struggle with is the this keyword. This comes with a lack of understanding of what this means and how it works. Determining the this binding for an executing function requires finding the direct call-site(w...00