Answers for "socket = io client example"

C#
2

socket io script

<script src="/socket.io/socket.io.js"></script>
<script>
  const socket = io();
</script>
Posted by: Guest on August-29-2020
1

socket io connect to namespace

var io  = require('socket.io')(http, { path: '/myapp/socket.io'});

io
.of('/my-namespace')
.on('connection', function(socket){
    console.log('a user connected with id %s', socket.id);

    socket.on('my-message', function (data) {
        io.of('my-namespace').emit('my-message', data);
        // or socket.emit(...)
        console.log('broadcasting my-message', data);
    });
});
Posted by: Guest on July-09-2020
0

angular socket.io with token header

var socket = io("http://localhost", {
  extraHeaders: {
    Authorization: "Bearer authorization_token_here"
  }
});
Posted by: Guest on August-24-2020
1

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";
Posted by: Guest on November-21-2020

C# Answers by Framework

Browse Popular Code Answers by Language