adonis-websocket icon indicating copy to clipboard operation
adonis-websocket copied to clipboard

Official websocket provider for AdonisJs

Results 19 adonis-websocket issues
Sort by recently updated
recently updated
newest added

Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=npm&package_name=ws&from_version=5.2.2&to_version=7.4.6&pr_id=c7cf7923-c5e0-4b62-90b1-b3980fb09fbc&visibility=true&has_feature_flag=false) #### Changes included in this PR - Changes to...

## Proposed changes Extract serializing messages for ClusterHop to serializer and add conditional implementation when process is managed by pm2 so messages can be handled by message bus in PM2...

I am receiving this error radomically when sending a broadcast message on a topic that certainly has many subscribers

I have recently update my code base from AdonisJS version 3.2 to the latest. With much effort, everything working right, but not new > @adonisjs/websocket or > @adonisjs/websocket-client package. With...

## When an authenticated user, the websocket transmits this message: adonis: websocket connection is not in open state, current state 1 + 1ms I am having this problem when I...

triage

Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project. #### Changes included in this PR - Changes to the following...

## Proposed changes I've replaced the error inside Connection.makeEventPacket to a debug message as this was blocking broadcasts from being sent when a socket connection was closed. As far as...

## Why this feature is required (specific use-cases will be appreciated)? I would like to use websocket connection to emit event and get the result of it - it is...

Dear, I do the example follow: https://adonisjs.com/docs/4.1/websocket-server#_creating_middleware, and I modify some code like bellow ```js 'use strict' class CustomMiddleware { // for HTTP async handle (ctx, next) { } //...