DEV Community

Cover image for Using Socket.io in express-generator.
Abhishek shah
Abhishek shah

Posted on • Edited on

2 1

Using Socket.io in express-generator.

Socket.io has documentation on how to use it with express but it a bit tricky to use socket.io with express-generator because the server is created in www file and the io is created in app or server but the use of io is in the router .So how can you use socket.io in express-generator ?

Its very simple you can create a new file as mysocket and create instance of io over there and export it.

In the mysocket file.

let socketIo = require('socket.io');
let io = socketIo();
let socketApi = {};
socketApi.io = io;
module.exports = socketApi;

In the www file

var server = http.createServer(app);
socketAPI.io.attach(server);

So, you can import io from mysocket file into the router and use it.
If you have anything to add you can leave a comment.

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more