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

mult-api-client

v1.1.4

Published

O `SocketClient` é um módulo que permite a conexão com um servidor socket.io, enviando e recebendo mensagens e atualizando a contagem de usuários online. Este guia explica como integrar e usar o módulo em suas páginas HTML.

Downloads

61

Readme

Documentação do Módulo SocketClient Mult-Api-Client

Introdução

O SocketClient é um módulo que permite a conexão com um servidor socket.io, enviando e recebendo mensagens e atualizando a contagem de usuários online. Este guia explica como integrar e usar o módulo em suas páginas HTML.

  • Executar: npx webpack --config webpack.config.js

Passos para Integrar o Módulo

1. Incluir as Bibliotecas Necessárias

No cabeçalho ou corpo da sua página HTML, adicione os seguintes scripts:

  • Biblioteca socket.io
  • Script do SocketClient
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Teste do Módulo SocketClient</title>
  </head>
  <body>
    <div>
      <p>Usuários online: <span id="onlineCount">0</span></p>
      <input
        type="text"
        id="broadcastMessage"
        placeholder="Digite sua mensagem"
      />
      <button id="sendBroadcast">Enviar Mensagem</button>
    </div>

    <!-- Inclua a biblioteca socket.io -->
    <script
      src="https://cdn.socket.io/4.7.5/socket.io.min.js"
      integrity="sha384-2huaZvOR9iDzHqslqwpR87isEmrfxqyWOF7hr7BY6KG0+hVKLoEXMPUJw3ynWuhO"
      crossorigin="anonymous"
    ></script>

    <!-- Inclua o script do SocketClient -->
    <script src="https://cdn.jsdelivr.net/npm/mult-api-client/dist/socketClient.js"></script>

    <script>
      document.addEventListener("DOMContentLoaded", () => {
        const dominio = window.location.hostname;
        const config = {
          clientId: "www.lexdevfull.com.br", // Substitua pelo seu domínio cadastrado na nossa Api clientId
          socketUrl: "www.multapi.site",
        };

        const socketClient = new SocketClient(config);
        socketClient.initializeSocket();

        // Atualiza a contagem de usuários online
        socketClient.setOnlineCountUpdateCallback((count) => {
          document.getElementById("onlineCount").textContent = count;
        });

        // Envia uma mensagem de broadcast
        document
          .getElementById("sendBroadcast")
          .addEventListener("click", () => {
            const message = document.getElementById("broadcastMessage").value;
            if (message) {
              socketClient.sendMessage({ broadcast: true, text: message });
              document.getElementById("broadcastMessage").value = "";
            }
          });
      });
    </script>
  </body>
</html>

2. Configuração do Cliente

Dentro do script, configure o cliente fornecendo o clientId e a URL do servidor socket.io:

const config = {
  clientId: "www.lexdevfull.com.br", // Substitua pelo seu domínio cadastrado na nossa Api clientId
  socketUrl: "www.multapi.site",
};

const socketClient = new SocketClient(config);
socketClient.initializeSocket();

3. Atualização de Contagem de Usuários Online

Defina um callback para atualizar a contagem de usuários online na página:

  • neste exemplo, atualiza o elemento #onlineCount
socketClient.setOnlineCountUpdateCallback((count) => {
  document.getElementById("onlineCount").textContent = count;
});

4. Envio de Mensagens

Adicione um evento para enviar mensagens de broadcast quando o botão for clicado:

  • neste exemplo, usamos o elemento #sendBroadcast e o elemento #broadcastMessage
document.getElementById("sendBroadcast").addEventListener("click", () => {
  const message = document.getElementById("broadcastMessage").value;
  if (message) {
    socketClient.sendMessage({ broadcast: true, text: message });
    document.getElementById("broadcastMessage").value = "";
  }
});

Conclusão

Seguindo esses passos, você poderá integrar o SocketClient em suas páginas HTML para se comunicar com a nossa Mult-Api, gerenciar a contagem de usuários online e enviar mensagens. Se tiver qualquer dúvida ou problema, entre em contato com o suporte.