npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-zeus-websockets

v1.0.4

Published

Websockets Vue client for Zeus Websockets server

Downloads

8

Readme

Vue Zeus Websocket client

Plugin para Vue para usar websockets con Zeus Websockets Server

Instalación

Mediante npm:

npm install --save vue-zeus-websockets

Importación

Está preparado para usar con Webpack.

En el archivo principal de Vue:

import ZeusWebsockets from 'vue-zeus-websockets';

Vue.use(new ZeusWebsockets({
    connection: 'ws://project.test:6001',
}));

Si el servidor corre sobre SSL, en connection, el protocolo a usar sería wss://

Desde cualquier componente de Vue se puede acceder al objeto this.$socket desde donde se realizarán las acciones.

Emitir mensaje

this.$socket.emit((EventName, data, [channel])

EventName: Nombre del evento

data: Datos a enviar. Normalmente un objeto Javascript.

channel: (Opcional) Nombre de canal (o canales) a los cuales se enviarán los datos. Si no se especifica se enviarán a todos los clientes conectados. Puede ser un string o un array si se quiere especificar varios canales.

Ejemplo:

this.$socket.emit('SendParams', {a: 1, b: 2}, 'channel1');

Unirse a un canal

Para recibir datos que van destinados a un cierto canal, primero hay que unirse. Se debe hacer una vez se ha realizado la conexión al servidor de websockets.

Ejemplo para unirse a canal1:

mounted() {
    this.$socket.onConnect(() => {
        this.$socket.join('canal1');
        
        ...
    });
}

También puedes unirte a varios canales pasando el listado como array:

this.$socket.join(['canal1', 'canal2']);

Escuchar mensaje

this.$socket.listen(EventName, callback)

Por ejemplo, cuando se recibe el evento SendParams, se ejecuta un console.log con los datos recibidos:

mounted() {
    this.$socket.onConnect(() => {
        ...
        
        this.$socket.listen('SendParams', (data) => {
            console.log(data);
        });
    });
}

Hay que tener en cuenta que cuando se envian datos, los reciben todos los clientes menos el que realizó el envio. Se ha realizado así a propósito para que el propio componente que ha realizado el envio no reaccione al listen y se ejecuten procesos innecesarios (por ejemplo una recarga de datos).