I'm working on a project for an organization which has a local network and the servers don't have access to the internet. I new to Vue and real-time events. So is there a way to use services like pusher or socket.io offline? there is this package "tristandunn/pusher-fake" does this do the job or not? Thanks alot
Asked
Active
Viewed 865 times
1 Answers
2
Sure there is. You can easliy host your own socket.io server. tlaverdure/laravel-echo-server is a great example of this.
Since a few months, there is also a php-based Laravel package to handle websockets: https://github.com/beyondcode/laravel-websockets

Jerodev
- 32,252
- 11
- 87
- 108
-
1I recommend using `beyondcode/laravel-websockets` as it does not introduce another technology (nodejs) in the project. Works like a charm. – Namoshek Jan 18 '19 at 08:34