Giter VIP home page Giter VIP logo

Comments (5)

santiq avatar santiq commented on May 23, 2024 1

Hello @midnightblurz

Just add a new loader like in loaders/socket-io.js where you attach the socket.io instance to the express app.

Then register the socket.io instance into the Dependency Injection container, similar to how the instance of the Event Emitter is registered.

Finally, to use it, inject it on the classes you want to emit socket events, like the event emitter.

Socket.io and the Event Emitter are pretty similar.

I hope this helps!

from bulletproof-nodejs.

midnightblurz avatar midnightblurz commented on May 23, 2024

Got it! Thanks for the help

from bulletproof-nodejs.

arghyac35 avatar arghyac35 commented on May 23, 2024

Hello @midnightblurz

Just add a new loader like in loaders/socket-io.js where you attach the socket.io instance to the express app.

Then register the socket.io instance into the Dependency Injection container, similar to how the instance of the Event Emitter is registered.

Finally, to use it, inject it on the classes you want to emit socket events, like the event emitter.

Socket.io and the Event Emitter are pretty similar.

I hope this helps!

Can u please show an example code of how to implement the same?

from bulletproof-nodejs.

jeffreyvdhondel avatar jeffreyvdhondel commented on May 23, 2024

Hello @midnightblurz
Just add a new loader like in loaders/socket-io.js where you attach the socket.io instance to the express app.
Then register the socket.io instance into the Dependency Injection container, similar to how the instance of the Event Emitter is registered.
Finally, to use it, inject it on the classes you want to emit socket events, like the event emitter.
Socket.io and the Event Emitter are pretty similar.
I hope this helps!

Can u please show an example code of how to implement the same?

Yeah that would be great. I can't figure it out.

from bulletproof-nodejs.

13bscsaamjad avatar 13bscsaamjad commented on May 23, 2024

If it is still relevant, you could do something like

src/app.ts

const app = express();
const httpServer = createServer(app);
await require('./loaders').default({ expressApp: app, httpServer: httpServer });

src/loaders/index.ts

await SocketServer({ httpServer });

And have a loader as pointed by @santiq which loads class implementing the SocketServer src/loaders/socket-io.ts

export default ({ httpServer }) => {
  new SocketServer(httpServer);
};

And implement the socket server class like src/socketio/socketio.ts

import { Server } from 'socket-io';

export default class SocketServer {
  constructor(httpServer) {
    this.io = new Server(httpServer);
    this.listen();
  }

  private listen() {
    const Logger: Logger = Container.get('logger');
    Logger.silly(`SocketServer listening!`);

    this.io.on('connection', (socket: Socket) => {
      Logger.silly(`Client connected to SocketServer: ${socket.id}`);
      
      socket.on('disconnect', () => {
            Logger.silly(`Client disconneted from SocketServer: ${socket.id}`);
      });
    });
  }
}

And have decorators for different events like EventDispatcher to be injected into service classes.

Hope it helps 😊

from bulletproof-nodejs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.