JSPM

  • Created
  • Published
  • Downloads 114
  • Score
    100M100P100Q77169F
  • License Apache License

Discord Welcome/Goodbye Card

Package Exports

  • discord-welcome-card

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (discord-welcome-card) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Discord Welcome Card

Example Welcome

const Discord = require("discord.js");
const client = new Discord.Client();
const {welcomeImage, goodbyeImage} = require('discord-welcome-card')

client.on("message", async message => {
    message.channel.send('', await welcomeImage(message.member))
})