Harpreet Singhsinghharpreet.hashnode.dev·Oct 3, 2024Tried Proxy yet...?Introduction As the name suggests, a Proxy is an intermediary that acts on behalf of another entity to perform tasks or relay information. I first encountered the power of Proxy while exploring the Vue.js reactivity model.This experience opened my ey...36 readsJavaScript Proxy Use Cases
Kshitij Kakadekshitijkakade.hashnode.dev·Aug 21, 2023Clearing Away the Clutter with Proxy ObjectsModern web apps let users view data across multiple tabs. Product filters, selections, and more become isolated little sandboxes. Now imagine clearing filters in one tab also wiped out the others! Without care, state can become tangled across UI comp...JavaScript
Iman Roustairousta.hashnode.dev·Mar 8, 2023JavaScript Proxy: A Practical GuideIn JavaScript, a Proxy object is an object that wraps another object (target) and intercepts the fundamental operations of the target object. The Proxy object allows you to create an object that can be used in place of the original object, but which ...39 readsJavaScript