28 lines
525 B
HTML
28 lines
525 B
HTML
<!-- public/index.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Receiver Page</title>
|
|
</head>
|
|
<body>
|
|
<h2>This is index.html (Receiver)</h2>
|
|
|
|
<script src="https://cdn.socket.io/4.7.5/socket.io.min.js"></script>
|
|
<script>
|
|
const socket = io();
|
|
|
|
socket.on('connect', () => {
|
|
console.log('Connected to server:', socket.id);
|
|
});
|
|
|
|
socket.on('scan_dia_lagi', (data) => {
|
|
console.log('📨 Received scan_dia_lagi:', data);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|