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

gamersclub-api

v2.11.0

Published

Simple and private Gamers Club API

Downloads

4

Readme

GamersClub API

GamersClub API es una librería en NodeJS que permite obtener información de partidos, torneos, players y teams de la plataforma Gamers Club.

Gamers Club al no proporcionar una API, la librería lo que hace es scrapear directamente la web, parsear la información y devolverla en un formato que se pueda trabajar.

Instalación

La librería se instala vía npm

npm install gamersclub-api

Uso

Simplemente importamos el objeto GC para luego inicializarlo pasando como único parámetro el Session ID (Ver abajo como obtenerla)

const GC = require('gamersclub-api');

const gc = new GC(sessionId);

Para ver detalladamente su funcionalidad, en la carpeta examples van a encontrar un ejemplo de cómo utilizarla correctamente.

Obtener cookie de Gamers Club

Una vez logueados en Gamers Club con nuestra cuenta de Steam, en Chrome realizamos lo siguiente:

  1. Apretamos F12
  2. Vamos a la pestaña "Application"
  3. En la sección "Storage" a la izquierda, apretamos en donde dice "Cookies" y luego apretamos "https://gamersclub.com.br"
  4. Ahi nos va a mostrar una tabla, a nosotros nos importa la que dice "gclubsess". Cuando la encontramos, vamos a copiar toda la cadena que está en la columna "Value" de esa fila
  5. Una vez copiado eso, lo ponemos en la librería y listo! :)

Métodos

| Nombre | Retorna | | ------ | ------ | | initBrowser(browser?) | Promise() | | getMatch(tournamentId, matchId) | Match() | | getTeam(teamId) | Team() | | getTeamMatches(teamId) | Team() with matches | | getTournament(tournamentId) | Tournament() | | getEndedTournaments(page) | ArrayList of Tournament() |

Clases

Match

  • String id - ID del match
  • Tournament tournament - Torneo al que pertenece el match
  • Bool live - Si el partido está en vivo o no
  • String team1 - Nombre del equipo 1
  • String team2 - Nombre del equipo 2
  • Integer score1 - Score del equipo 1
  • Integer score2 - Score del equipo 2
  • Bool finished - Si el partido ya finalizó
  • String best_of - Tipo de match (BO1, BO3, etc.)
  • String date - Fecha del partido
  • String hour - Hora del partido
  • String maps - Mapas del match (Si son más de 1 se separan por comas)

Player

  • String id - ID del player
  • String name - Nombre del player
  • String level - Nivel del player
  • String avatar - Avatar que tiene en Gamers Club
  • String role - Rol que juega dentro del equipo

Team

  • String id - ID del team
  • String logo - Logo del team
  • String name - Nombre del team
  • String tag - Tag del team
  • Array[Player] players - Players que pertenecen al team
  • Array[Match] matches - Partidos del equipo

Tournament

  • String id - ID del torneo
  • String name - Nombre del torneo
  • String beginning - Inicio del torneo
  • String ending - Finalización del torneo
  • String prize - Premio
  • String groups - HTML de los grupos
  • String table - HTML de la tabla

License

MIT