A simple native reconnecting websocket client for Vue.js.
If you like or use this project, please consider supporting my work. Thanks! 🙏🏼
npm install vue3-light-websocket --save
In the Vue app entry file main.js
import Vue3LightWebSocket from 'vue3-Light-websocket'
app.use(Vue3LightWebSocket, 'wss://echo.websocket.org')
In the Vue app entry file main.js
app.use(Vue3LightWebSocket, 'wss://echo.websocket.org', {
connectManually: true,
reconnectEnabled: true,
reconnectInterval: 5000 // time to reconnect in milliseconds
})
At the moment, these are the only two options which are available.
The plugin adds a $socketClient
to your Vue instance.
In your components, you can handle websocket events by setting them up in the created
or mounted
hook.
onOpen
— event when socket is connectedonMessage
— event when socket receives a messageonClose
— event when socket is closedonError
— event when socket is closed abnormally
If the connection is broken, the event handlers will continue to work when reconnection succeeds.
// Component.vue
export default {
name: 'Component',
//
created () {
this.$socketClient.onOpen = () => {
console.log('socket connected')
}
this.$socketClient.onMessage = (msg) => {
console.log(JSON.parse(msg.data))
}
this.$socketClient.onClose = (msg) => {
console.log('socket closed')
}
this.$socketClient.onError = (msg) => {
console.log('socket error')
}
}
}
let data = {
type: 'message',
text: 'hello there'
}
this.$socketClient.send(JSON.stringify(data))
sendObj
A convenience method sendObj
is available for sending javascript objects
let data = {
type: 'message',
text: 'hello there'
}
this.$socketClient.sendObj(data)
This package is under development, and I'm still learning how maintaining and and publishing npm packages work. If you have more experience in building and maintaining javascript modules, I'd love to hear from you.
This is based on a simple websocket plugin that I wrote for my projects, which I am now releasing as a Vue.js plugin.
This is also a personal project to learn how to build and publish packages on npm. I have deliberately started with a repository from the ground up (instead of going with a template starter) in order to get my hands dirty setting up various components such as babel
, rollup
as well as tests using jest
. As you can probably tell, there is a fair bit of work that needs to be done in order to make this package robust and maintainable.
I'd be super grateful to get pointers from folks who have more experience building and maintaining packages on npm. :)