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

easymoderation

v1.0.2

Published

EasyModeration is a Simple NPM Package that helps you to handle Moderation Discord much easier. It supports any Discord Javascript Library that's ready to be used!

Downloads

1

Readme

EasyModeration

What is EasyModeration?

  • EasyModeration is a Simple NPM Package that helps you to handle Moderation Discord much easier. It supports any Discord Javascript Library that's ready to be used!

Installing

Must have Node 8+
Run npm install easymoderation on your terminal

Functions/How-to

createGuild() - Creates a Guild

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.createGuild('My Guild', 'us-central', 'http://mylinktoaiconthatisa.cat').then(r => {
	console.log(r)
});

Returns a Promise Object

modifyGuild() - Modifies a Guild

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.modifyGuild('My Guild ID', 'New Guild Name', 'hongkong', 0 /* Verification Level */, 0 /* explicit content filter level */, 'AFK Channel ID', 'System Channel ID', 300 /* AFK Timeout */, 'http://anewlinktomynewicon.com', 'New Owner ID', 'Splash URL PARTNER ONLY').then(r => {
	console.log(r)
});

Returns a Promise Object
Check https://discordapp.com/developers/docs/resources/guild#modify-guild for more info on the Parameters!

deleteGuild() - Deletes a Guild

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.deleteGuild('My Guild ID').then(r => {
	console.log(r)
});

Returns a Promise Object

fetchMember() - Fetch the User's ID

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.fetchMember('My Guild ID', 'Member ID').then(r => {
	console.log(r)
});

Returns a Promise Object

fetchMembers() - Fetch random users with a limit

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.fetchMembers('My Guild ID', 1 /* Amount of users to get randomly */).then(r => {
	console.log(r)
});

Returns a Promise Object

modifyUser() - modify a Member

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.modifyUser('My Guild ID', 'Member ID', 'New Nickname', false /* When a user is muted on VC */, false /* When a user is deafen on VC */).then(r => {
	console.log(r)
});

Returns a Promise Object

ban() - Bans a Member

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.ban('My Guild ID', 'Member ID', 7 /* Amount of days delete the user's messages */, 'A reason for the ban').then(r => {
	console.log(r)
});

Returns a Promise Object

unban() - Unbans a Banned Member, if not banned, returns a Unknown Ban error

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.unban('My Guild ID', 'Banned Member ID').then(r => {
	console.log(r)
});

Returns a Promise Object

kick() - Kicks a Member

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.kick('My Guild ID', 'Member ID').then(r => {
	console.log(r)
});

Returns a Promise Object

bulkDelete() - Bulkdelete a specified amount of messages from 2 - 100

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.bulkDelete('My Channel ID', ['An Array', 'of', 'Message', 'IDs']).then(r => {
	console.log(r)
});

Returns a Promise Object

fetchMessages() - Fetchs messages from the Channnel id from 1 - 100

const EasyModeration = require('easymoderation');
const moderation = new EasyModeration('Bot Token');

moderation.fetchMessages('My Channel ID', 50 /* Minimum 1 max 100, amount of messages to fetch */).then(r => {
	console.log(r)
});

Returns a Promise Object