socket.io-nats-adapter icon indicating copy to clipboard operation
socket.io-nats-adapter copied to clipboard

Pub/Sub adapter for socket.io using nats.io as pub/sub message queue

Results 1 socket.io-nats-adapter issues
Sort by recently updated
recently updated
newest added

`export default class NatsIoClient { servers: string[] conn?: NatsConnection constructor(servers: string[]) { this.servers = servers } public async initialize() { this.conn = await connect({ servers: this.servers, noEcho: true, }) console.log(`connected...