I have a typical Express, React (Next13), Node, MongoDB application and need to get access to the user´s ip address on one route because he seems to be malicious.
Problem is, I couldn´t figure out how that works in Next13. The older versions seemed to have a more simple way, but all I get by using thrid party libraries like request-ip is the frontend-server´s IP-address, but not the user´s address.
I assume I somehow need to set the clients IP address in the frontend, or not?
Any help appreciated!