socket.io html code example

Example 1: html socket io import

<script src="/socket.io/socket.io.js"></script>

Example 2: 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 3: simple socket.io chat

npm install socket.io