MetinSeylan / Vue-Socket.io

😻 Socket.io implementation for Vuejs and Vuex
https://metin.sh
MIT License
3.95k stars 496 forks source link

Pinia Support #331

Closed pascal-mueller closed 2 years ago

pascal-mueller commented 2 years ago

Is this project ever getting Pinia support, the new official store fro VueJS? Is it even still maintained?

ghost commented 2 years ago

@pascal-mueller personally, I'd try to create your own SocketIO service instead of relying on this plugin. Development on it is not very active and I had to use a fork to be compatible with Vue 3.

With the new script setup syntax, it seems even more logical to move away from a Vue plugin. Here's an example on how you could do that: https://deepinder.me/creating-a-real-time-chat-app-with-vue-socket-io-and-nodejs

pascal-mueller commented 2 years ago

Thanks for the input.