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

discord-friends

v2.0.0

Published

discord-friends est un module NPM permettant d'ajouter des amis et d'être tenu au courant des évènements sélectionnés les concernant.

Downloads

10

Readme

À propos

discord-friends est un module NPM permettant d'ajouter des amis et d'être tenu au courant des évènements sélectionnés relatifs à vos amis.

Disponible avec Discord.js V11 et V12.

  • Simple d'utilisation
  • Utile
  • Rapide mise en place

Installation

npm install discord-friends

Exemple d'utilisation

const Discord = require("discord.js")
const client = new Discord.Client();

const discordfriends = require("discord-friends");
var options = {
  friendConnection: "L'un de vos amis vient de se connecter !",
  ignoredUsers: [481077432452120586, 456226577798135808]
}
var DiscordFriends = new discordfriends(client, options)

DiscordFriends.on('newFriend', (userID, friendID, options) => {
  console.log(`${userID} a ajouté un ami, ${friendID}.`)
})

client.login("token")

Options

| Option | Description | Type | Default | | :------------------ | :-----------------------------------: | ----------------------: | --------: | | maxFriends | Maximum d'amis par utilisateur | Number [-1 = illimité] | -1 | | statusDetection | Détection des changements de statut | Boolean | true | | mentionDetection | Détection des mentions d'utilisateurs | Boolean | true | | mentions | Mentions en messages privés | Boolean | true | | friendConnect | Message de connection | String | Voir "1 | | friendDisconnect | Message de déconnection | String | Voir "2 | | mentionned | Message de mentions | String | Voir "3 | | mentionIfConnect | Voir "4 | Boolean | true | | usersFriends | Liste d'amis | Array | {} | | ignoredUsers | Liste d'utilisateurs à ignorer | Object | [] |

"1 : "one of your friends just connected!"

"2 : "one of your friends just disconnected!"

"3 : "one of your friends just mention you!"

"4 : Envoyer des messages privés uniquement si l'utilisateur concerné est connecté

Méthodes

| Méthode | Description | | :------------------------------- | ------------------------------------: | | .add(id, friendID, options) | Ajoute un ami | | .remove(id, friendID) | Supprime un ami | | .update(id, friendID, options) | Met à jour un ami | | .users() | Obtenir la liste des utilisateurs | | .clear() | Supprimer la liste des utilisateurs |

Events

| Évènement | Description | | :------------------ | :------------------------------------------------------------- | | newFriend | Émis quand une nouvelle paire utilisateur-ami est créée | | removeFriend | Émis quand une paire utilisateur-ami est supprimée | | updateFriend | Émis quand une paire utilisateur-ami est mise à jour | | userListRetrieved | Émis quand la méthode .users() est appellée | | cleared | Émis quand la liste des paires utilisateurs-amis est supprimée |

La liste des réponses des évènements est disponible ci-dessous

Réponses Events

| Évènement | Réponse | | :------------------ | :-------------------------------------------------- | | newFriend | ( id, idAmi, optionsAmi, pairesUtilisateursAmis ) | | removeFriend | ( id, idAmi, pairesUtilisateursAmis ) | | updateFriend | ( id, idAmi, optionsAmi, pairesUtilisateursAmis ) | | userListRetrieved | ( pairesUtilisateursAmis ) | | cleared | ( pairesUtilisateursAmis ) |

Liens