What I want to see is how many clients can it keep track of at the same time. It identifies clients via their IP (which can be masked). It would be awesome if you could help me find its limits by doing the following:
1. Open 4-5 chrome tabs and navigate to https://clientcounter.herokuapp.com/total in all of them.
2. Open the console and paste the following code:
setInterval(()=>{fetch("https://clientcounter.herokuapp.com/subscribe",{method:"get",headers:{"x-forwarded-for":Math.random().toString(36).replace(/[^a-z]+/g,"")}}).then(e=>e.json()).then(console.log)},50);
3. Let it run for quite some time.
4. Tell your friends :)
The github repo (in case anyone is curious or would like to help) is: https://github.com/christosmaris/clientcounter
Thanks a lot in advance :D