GithubHelp home page GithubHelp logo

WebSocket adapters about nest HOT 10 CLOSED

ProbablePrime avatar ProbablePrime commented on April 24, 2024 5
WebSocket adapters

from nest.

Comments (10)

hustcer avatar hustcer commented on April 24, 2024 4

uWebSockets should be better than socket.io, IMO

from nest.

joshwiens avatar joshwiens commented on April 24, 2024 4

Socket.io is familiar to most of the Angular community of which Nest has it's roots. I don't disagree that uWebSockets outperforms socket.io at scale but imo Nest shouldn't make choices like that for consumers.

As @ProbablePrime said above, make it pluggable, support what makes sense & allow consumers to make their own tooling choices.

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 24, 2024 2

Hi @ProbablePrime,

Since 3.0.0 you can create adapter for any ws library. Read more

from nest.

ProbablePrime avatar ProbablePrime commented on April 24, 2024 1

@kamilmysliwiec I don't think this addresses the issue.

The issue is asking for a way to replace Socket.io completely. Right now this appears to just require an adapter to return Socket.io instances. It would still require the whole Socket.io interface on the object returned from createWithNamespace

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 24, 2024 1

@cojack, yes 😃

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 24, 2024

Hi @ProbablePrime,
Since latest update you should be able to use custom socket.io adapter. Example:

import { SocketIoAdapter } from '@nestjs/common';

class CustomAdapter implements SocketIoAdapter {
    create(port: number) {
        return {};
    }
    createWithNamespace(port: number, namespace: string) {
        return {};
    }
}

const app = NestFactory.create(ApplicationModule, instance);
app.setIoAdapter(new CustomAdapter());

from nest.

cojack avatar cojack commented on April 24, 2024

@kamilmysliwiec will be this #80 pr merged in a few days?

from nest.

ProbablePrime avatar ProbablePrime commented on April 24, 2024

This looks a lot better \o/ thanks! doing a more indepth read of your changes but i will close it most likely

from nest.

ProbablePrime avatar ProbablePrime commented on April 24, 2024

Yep PERFECT. thanks!

from nest.

lock avatar lock commented on April 24, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

from nest.

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.