Remix - Advanced Patterns
Consider this Remix client code:
What will be output if the server sends the message 'Update available'?
const socket = new WebSocket('ws://localhost:3000');
socket.onmessage = (event) => {
console.log('Message:', event.data);
};What will be output if the server sends the message 'Update available'?
