mmazzarolo.hashnode.devTrack down the JavaScript code responsible for polluting the global scopeFollowing "Find what JavaScript variables are leaking into the global scope", here's another post to help you solve issues with global scope pollution in JavaScript apps. In the previous post, we learned a technique to discover the name of variables ...Feb 23, 2022·7 min read
mmazzarolo.hashnode.devFind what JavaScript variables are leaking into the global scopeDetecting variables that are mistakenly or unknowingly added to the global scope can be helpful to debug your apps and avoid naming collisions. The more a web app and its dependencies grow, the more having a good understanding of what’s happening in ...Feb 22, 2022·4 min read
mmazzarolo.hashnode.devCreating and deploying a tiny proxy server on Vercel in 10 minutesI recently created a tiny proxy server to edit responses of a public API on the fly, and I was impressed by how easy it is to build and deploy such things on Vercel.In my case, the goal was to allow all origins to fetch the Pinboard API by adding an ...Feb 22, 2022·3 min read
mmazzarolo.hashnode.devRunning React Native everywhere: Browser Extensions & ElectronTL;DR Fourth part of the "Running React Native everywhere" series: a tutorial about structuring your monorepo to run multiple React Native apps targeting different platforms. This time, we'll focus on running React Native in an Electron app and in a ...Sep 28, 2021·10 min read
mmazzarolo.hashnode.devRunning React Native everywhere: The WebTL;DR Fourth part of the "Running React Native everywhere" series: a tutorial about structuring your monorepo to run multiple React Native apps targeting different platforms. This time, we'll focus on running React Native on the web. About React Nati...Sep 26, 2021·6 min read