StratoSphere Stream
현재 접속한 클라이언트의 주소가 필요할때가 있다. 그냥 geolocation-db 사이트의 api를 이용하는게 좋다. const ipData = await fetch('https://geolocation-db.com/json/'); const locationIp = await ipData.json(); console.log(locationIp.IPv4); 이 방식이 간단했다.