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

imange

v1.0.6

Published

An all in one solution for image manipulation for discord.js and eris devs.

Downloads

6

Readme

imange

A powerfull module that allow you to generate awesome images. This is an extension to discord-image-generation with a bunch more functions. :P

You can download it from npmjs.

Configuration

First install it using either

npm i imange --save

or

yarn add imange

Now create a script in your discord.js project with the name of the image effect you want to have for eg: bobross.js

Now make your usual command handler stuff and then import imange and discord's Message Attachment as so:

const imange = require("imange")
const { MessageAttachment } = require("discord.js")

Then add the effect itself:

const img = await new imange.[[EFFECT]]().getImage(
    message.author.displayAvatarURL(
        { 
         dynamic: false,
         format: "png" 
        }
    )
);
const attach = new MessageAttachment(img, "[[EFFECT]].png");
return message.channel.send(attach);

Replace the [[EFFECT]] with the name of one of the effects stated below Eg:

const img = await new imange.Ad().getImage(
    message.author.displayAvatarURL(
        { 
         dynamic: false,
         format: "png" 
        }
    )
);
const attach = new Discord.MessageAttachment(img, "ad.png");
return message.channel.send(attach);

Result: Image Eg

Some effects require more than one input for these you will have to give it more of them as such:

const img = await new imange.DoubleStonk().getImage(
    message.author.displayAvatarURL(
        {
         dynamic: false,
         format: "png" 
        },
    message.mentions.users.first().displayAvatarURL(
        {
         dynamic: false,
         format: "png" 
        }
)
const attach = new Discord.MessageAttachment(img, "ad.png");
return message.channel.send(attach);

Note how the DoubleStonk().getImage has been provided with two user avatars!

Result: Image Eg

Effect List

| Type | No. images required | Effect Name | | :-----: | :-----------------: | :--------------: | | PNG | 1 | Ad | | PNG | 1 | Affect | | PNG | 1 | Approved | | PNG | 1 | Beautiful | | PNG | 1 | Biden | | PNG | 1 | Trump | | PNG | 1 | Bobross | | PNG | 1 | Captcha | | PNG | 1 | ConfusedStonk | | PNG | 2 | DoubleStonk | | PNG | 1 | NotStonk | | PNG | 1 | Stonk | | PNG | 1 | Facepalm | | PNG | 1 | Hitler | | PNG | 1 | Jail | | PNG | 1 | Karaba | | PNG | 2 | Kiss | | PNG | 1 | ConfusedStonk | | PNG | 1 | Mms | | PNG | 1 | Money | | PNG | 3 | Podium | | PNG | 1 | Poutine | | PNG | 1 | Rip | | PNG | 2 | Spank | | PNG | 1 | Tattoo | | PNG | 1 | Thomas | | PNG | 1 | Trash | | PNG | 1 | Wanted | | PNG | 1 | Crush | | PNG | 1 | Delete | | PNG | 1 | DiscordBlack | | PNG | 1 | DiscordBlue | | PNG | 2 | Bat Slap | | PNG | 2 | Bed | | PNG | 3 | Distracted | | TEXT | 0 | LisaPresentation | | GIF | 1 | Trigger | | GIF | 2 | Blink | | FILTERS | 1 | Blur | | FILTERS | 1 | Gay | | FILTERS | 1 | Greyscale | | FILTERS | 1 | Invert | | FILTERS | 1 | Lesbian | | FILTERS | 1 | Nonbinary | | FILTERS | 1 | Sepia |