websocket socket io live chate code example

Example 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";

Example 2: socketio connect websockets

var socket = io('http://localhost');
socket.emit('hello', 'there');