Author Archives: Vikas Bawa

Exploring-Polling-and-Server-Sent-Events

Exploring Polling and Server-Sent Events

You’re checking the score of an IPL match on Cricbuzz or the IPL website. Suddenly, an animation pops up — Virat Kohli just smashed a six! The commentary updates, and so does the score. But wait… You didn’t even refresh the page. Still, everything feels live. Real-time. Like you’re watching it unfold as it happens. Continue Reading »

Unleashing Performance: A Guide to Code Splitting in React.js

Unleashing Performance: A Guide to Code Splitting in React.js

In the realm of web development, where speed and performance are paramount, optimizing your React.js application is key to delivering a seamless user experience. One powerful technique for achieving this is “Code Splitting.” This blog post will explore the concept of code splitting, its benefits, and how you can implement it in your React applications Continue Reading »

Understanding Tree Shaking in JavaScript: Trimming the Fat from Your Code

If you’ve ever wondered why your JavaScript files are bigger than they need to be, you might be interested in a neat optimization technique called “tree shaking.” No, it doesn’t involve vigorously shaking your computer – it’s a process that helps you get rid of unnecessary code and make your applications faster and more efficient. Continue Reading »