hero

Yusuf Discord Wrapper Kotlin. An easy-to-use discord wrapper made in kotlin

View Docs →

💡 About YDWK

It is a discord wrapper made in kotlin that aims to be as simple and as fast as possible while still being easy to use and understand. It is built to be similar to discord.js but with some differences. It tries to adhere to the discord apiopen in new window as much as possible.

🔑 This api also comes with a library called JConfig

JConfig is library which allows you to set and get values from a config file. It is built to be simple and easy to use.

For more information, check out the special page for JConfig here.

📦 Installation

repositories {
    mavenCentral()
}
dependencies {
    implementation "io.github.realyusufismail:ydwk:${project.version}"
}
repositories {
    mavenCentral()
}
dependencies {
    implementation("io.github.realyusufismail:ydwk:${project.version}")
}
<dependency>
    <groupId>io.github.realyusufismail</groupId>
    <artifactId>ydwk</artifactId>
    <version>${project.version}</version>
</dependency>
Click to see how to download the snapshot version
repositories {
    maven {
        url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
    }
}
dependencies {
    implementation "io.github.realyusufismail:ydwk:${latest-snapshot-version}"
}
repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
    implementation("io.github.realyusufismail:ydwk:${latest-snapshot-version}")
}
<repository>
    <id>snapshots-repo</id>
    <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<dependency>
    <groupId>io.github.realyusufismail</groupId>
    <artifactId>ydwk</artifactId>
    <version>${latest-snapshot-version}</version>
<type>pom</type>
</dependency>