Quickly spin up stub server and proxy server using netcat

In this article, I will go through how to spin up a stub/mock server and proxy server using netcat.
A collection of 2 posts
In this article, I will go through how to spin up a stub/mock server and proxy server using netcat.
Use case: Usually, when integrating with external service endpoints in your backend application, you will be using libraries (require('https') for Nodejs, import requests or import aiohttp for Python, HttpUrlConnection for Java, etc.) to make HTTP calls. It might be difficult...