Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broadcasting with socket.io not listening #54

Open
ahmetugur91 opened this issue May 1, 2021 · 4 comments
Open

Broadcasting with socket.io not listening #54

ahmetugur91 opened this issue May 1, 2021 · 4 comments

Comments

@ahmetugur91
Copy link

I was working about 2 days to install this package.
I set up my laravel in docker and installed a redis container. Also installed predis on composer.

in nuxt side I run this commands:

npm install socket.io-client
npm install --save-dev @nuxtjs/laravel-echo

my files looks like this

nuxt.config.js
buildModules: [ // https://go.nuxtjs.dev/vuetify '@nuxtjs/vuetify', ['@nuxtjs/laravel-echo', { broadcaster: 'socket.io', host: 'backend.localhost', transports: ['websocket', 'polling'], }] ],

in any vue component
this.$echo.channel('aChannel') .listen("TestEvent", (e) => { console.log(e); });

When I inspect on chrome console, ws is connect to server. But when i fire an event on laravel, nuxt side was not listening.

Also when I inspect socket properties, connect property was false.

However, when I changed socket.io-client version to 2.4.0 it worked...

"socket.io-client": "2.4.0"

I dont know why but may you fix this problem.

@iranagame
Copy link

use .on(...) interface instead of .listen(...)

@ahmetugur91
Copy link
Author

use .on(...) interface instead of .listen(...)

as far as i remember i tried it too but it didn't work. If I try again, I'll write the result here.

@chapdel
Copy link

chapdel commented May 20, 2021

I'm experiencing the same issue.
Laravel with socket.io

@chapdel
Copy link

chapdel commented May 20, 2021

Issue solved on #9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants