A Simple Load Balancer in Golang Running it Start Multiple Instances of server.py Install Node: brew install node(For MAC) Run Server: node server.js Start Load Balancer go run main.go Bombard the loadbalancer with requests for i in {1..20}; do curl 127.0.0.1:8000; done