Javascript – How to send data on websocket close in react/nextjs on reload or tab close
I am making a web app where i want to show online/offline status of user. For that i need to listen to close and open events of websocket. const ws = new WebSocket('ws_url', 'token'); ws.onclose = (e) => { const…