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

simple-discord-wh

v1.0.3

Published

Manage Discord's webhook with a single class

Downloads

6

Readme

simple-discord-wh

version npm Total alerts Language grade: JavaScript

Manage Discord's webhook with a simple class

Installation

npm install simple-discord-wh

Examples

Basic use

const { Webhook } = require('simple-discord-wh');
const wh = new Webhook("YOUR WEBHOOK URL");

const IMAGE_URL = 'https://avatars.githubusercontent.com/u/6708827?s=120&v=4'
wh.setUsername('Simple Webhook');
wh.setAvatar(IMAGE_URL);

wh.send("Hello there"!);

wh.send({content: "This is also valid"})
  .then((messageId) => {
    wh.edit(messageId, "Hello there! This message has been edited.");
    wh.delete(messageId);
  });
  .catch(err => console.log(err.message));

Custom embeds

const { Webhook, Embed } = require('simple-discord-wh');
const wh = new Webhook("YOUR WEBHOOK URL");

const embed = new Embed()
.setTitle('Custom title')
.setAuthor('Walrus', 'https://avatars.githubusercontent.com/u/6708827?s=120&v=4', 'https://www.google.com')
.setURL('https://www.google.com')
.addField('First field', 'this is inline', true)
.addField('Second field', 'this is not inline')
.setColor('#00b0f4')
.setThumbnail('https://avatars.githubusercontent.com/u/6708827?s=120&v=4')
.setDescription('The walrus (Odobenus rosmarus) is a large flippered marine mammal')
.setImage('https://avatars.githubusercontent.com/u/6708827?s=120&v=4')
.setFooter('Hey its a footer', 'https://avatars.githubusercontent.com/u/6708827?s=120&v=4')
.setTimestamp();

The webhook can be sent with one of the following lines:

embed.send(wh)
wh.send(embed)
wh.send(["This will also include a text", embed])
wh.send({embeds: [embed.build()]})

Sending files

const { Webhook } = require('simple-discord-wh');
const wh = new Webhook('YOUR WEBHOOK URL');

wh.sendFile('../yourfilename.png');

Notes

simple-discord-wh is a promise based library, which means you can use .catch, .then, and await. If successful when sending a new message, the returned value will be the id of the message sent. For example:

const { Webhook } = require('simple-discord-wh');
const wh = new Webhook("YOUR WEBHOOK URL");

wh.send("Hello there!")
.then(() => console.log('Sent webhook successfully!'))
.catch(err => console.log(err.message));

or using async:

const { Webhook } = require('simple-discord-wh');
const wh = new Webhook("YOUR WEBHOOK URL");

(async () => {
    try {
        const messageId = await wh.send('Hello there!');
        console.log('Successfully sent webhook!');
        console.log('New message id:', messageId)
    }
    catch(e){
        console.log(e.message);
    };
})();

API

Webhook - class

Constructor

  • url : string

Methods

  • setUsername(username : string) returns this
  • setAvatar(avatarURL : string (image url)) returns this
  • async sendFile(filePath : string)
  • async send(payload : string/Embed/object) returns messageId
  • async edit(messageId : integer, payload: string/Embed)
  • async delete(messageId : integer)

Embed - class

Methods

  • setAuthor(author: string, authorImage (optional) : string (image url), authorUrl (optional) : string (link))
  • setTitle(title: string)
  • setURL(url: string)
  • setDescription(description : string)
  • setColor(color : string/number (hex or decimal color))
  • setThumbnail(thumbnail : string (image url), proxyImage (optional) : string (proxy image url), height (optional) : integer, width (optional) : integer)
  • setImage(image : string (image url), proxyImage (optional) : string (proxy image url), height (optional) : integer, width (optional) : integer)
  • setVideo(video : string (video url), proxyVideo (optional) : string (proxy video url), height (optional) : integer, width (optional) : integer)
  • setTimestamp(date (optional) : number/date object)
  • addField(fieldName : string, fieldValue: string, inline (optional) : boolean)
  • setFooter(footer : string, footerImage (optional) : string (image url), footerProxyImage (optional) : string (proxy image url))
  • setProvider(name : string, url : string (url))
  • build()

License

MIT