1.0.2 • Published 8 months ago

willclient v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

WillClient (WC) is a custom Discord API mod that combines elements from Discord.JS and Discord.PY made in Node.JS to solve most of the annoying parts of Discord.JS and possibly welcome users into Node.JS

THIS IS A VERY EARLY VERSION AND I WILL UPDATE IT OVER TIME

for a look at some examples check out the examples folder for a full look at everything go check out the wiki pages


Installation

npm i willclient
npm i paigeroid/willclient

Setting Up

Discord.JS Client

WC is built off of Discord.JS so for it to work you need Discord.JS.

const { Client } = require('discord.js');
const client = new Client({
	// your stuff here
});

WC Client

once you have your Discord.JS client you can add in WC

const { WillClient } = require('willclient');
const wc = new WillClient({
	client: client,
	prefix: "!",
	token: token
});

once you have your client set up and working you can run it using either of these:

client.login(token); // normal discord.js

wc.run(token); // optional alternative

Disclaimer

This mod is not associated with the creators of Discord, Discord.JS, or Discord.PY this was created out of love for Discord bot development because I wanted to make things easier for people. I do not condone harassment of the original developers and or anyone else involved in the creation of them. I am not responsible for anything made with this mod and be sure to follow Discord's terms of service and their community guildlines while developing.