Sometimes we may want to access indirectly to an object, via a substitute. That substitute is called Proxy. The Proxy Pattern helps us deal with a proxy object and talk to the actual object. In this tutorial, we’re gonna look at 2 ways to implement Proxy Pattern in Node.js:
- Using custom Proxy Class
- Using Proxy API
Continue reading “Ways to implement Proxy Pattern in Node.js”