Vue-Socket.io is a socket.io integration for Vuejs, easy to use, supporting Vuex and component level socket consumer managements

###### Demo - Chat Application - Car Tracking Application #### 🚀 Installation ``` bash npm install vue-socket.io --save ``` ``` javascript import Vue from 'vue' import store from './store' import App from './App.vue' import VueSocketIO from 'vue-socket.io' Vue.use(new VueSocketIO({ debug: true, connection: 'http://metinseylan.com:1992', vuex: { store, actionPrefix: 'SOCKET_', mutationPrefix: 'SOCKET_' } })) new Vue({ router, store, render: h => h(App) }).$mount('#app'); ``` **Parameters**|**Type's**|**Default**|**Description** -----|-----|-----|----- debug|Boolean|`false`| Enable logging for debug connection|String/Socket.io-client|`null`| Websocket server url or socket.io-client instance vuex.store|Vuex|`null`| Vuex store instance vuex.actionPrefix|String|`null`|Prefix for emitting server side vuex action vuex.mutationPrefix|String |`null`|Prefix for emitting server side vuex mutation