socket.io on connection
io.on('connection', (socket) =>{
console.log(`Connecté au client ${socket.id}`)
})
socket.io on connection
io.on('connection', (socket) =>{
console.log(`Connecté au client ${socket.id}`)
})
socket io script
<script src="/socket.io/socket.io.js"></script>
<script>
const socket = io();
</script>
socket..io
<script src="https://cdn.socket.io/socket.io-3.0.1.min.js"></script>
how to run socket.io server
const express = require("express");
const http = require("http");
const socketIo = require("socket.io");
const port = process.env.PORT || 8001;
const index = require("./routes/index");
const app = express();
app.use(index);
const server = http.createServer(app);
const io = socketIo(server); // < Interesting!
const getApiAndEmit = "TODO";
simple socket.io chat
npm install socket.io
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us