kedi / DWP

DiscordWrapper (DWP) is a useful NodeJS wrapper/library which allows you to interact with Discord API.

Home Page:https://github.com/kedi/dwp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discord API Wrapper for NodeJS

The -probably- hardest way to interact with Discord API while using a NodeJS library.

GitHub stars GitHub code size in bytes GitHub GitHub package.json version Libraries.io dependency status for GitHub repo

To start using this wrapper, install the library:

npm install @kedi/discordwrapper@1.0.0

Bring the library & call the class into your code:

const DiscordWrapper = require("@kedi/discordwrapper")

const client = new DiscordWrapper()

Here you go, now you need to login to the client with your bot's token:

client.login("token")

Now you are all set. Please go to docs in the repistory and see Managers for more info on how you can do stuff. If you are done here, your code should look like:

const DiscordWrapper = require("@kedi/discordwrapper")
const client = new DiscordWrapper()
client.login("token")

If you have any questions, feel free to DM me via Discord Toasty#0001!

About

DiscordWrapper (DWP) is a useful NodeJS wrapper/library which allows you to interact with Discord API.

https://github.com/kedi/dwp

License:Apache License 2.0


Languages

Language:JavaScript 100.0%