All Projects → discord-net → Discord.net

discord-net / Discord.net

Licence: mit
An unofficial .Net wrapper for the Discord API (http://discordapp.com)

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Discord.net

Discord.js
discord.js is a powerful Node.js module that allows you to easily interact with the Discord API.
Stars: ✭ 16,432 (+629.34%)
Mutual labels:  discord-api, bot, discord
Discord4j
Discord4J is a fast, powerful, unopinionated, reactive library to enable quick and easy development of Discord bots for Java, Kotlin, and other JVM languages using the official Discord Bot API.
Stars: ✭ 973 (-56.81%)
Mutual labels:  discord-api, bot, discord
Eris
A NodeJS Discord library
Stars: ✭ 879 (-60.99%)
Mutual labels:  discord-api, bot, discord
Discord Panel
📊 User friendly dashboard/tool for discord bot developpers to manage servers
Stars: ✭ 116 (-94.85%)
Mutual labels:  discord-api, bot, discord
Nino
🔨 Advanced and cute moderation discord bot as an entry of Discord's Hack Week!
Stars: ✭ 78 (-96.54%)
Mutual labels:  discord-api, bot, discord
Discordrb
Discord API for Ruby
Stars: ✭ 651 (-71.11%)
Mutual labels:  discord-api, bot, discord
Discord Haskell
Haskell library for writing Discord bots
Stars: ✭ 129 (-94.27%)
Mutual labels:  discord-api, bot, discord
Javacord
An easy to use multithreaded library for creating Discord bots in Java.
Stars: ✭ 368 (-83.67%)
Mutual labels:  discord-api, bot, discord
Bot
A Discord bot for all your needs. With memes, utilities, moderation & more, Fire is the only bot you'll need.
Stars: ✭ 79 (-96.49%)
Mutual labels:  discord-api, bot, discord
Basicbot
A basic example of a Discord Bot written in Python. (discord.py)
Stars: ✭ 73 (-96.76%)
Mutual labels:  discord-api, bot, discord
Dsharpplus
A .NET Standard library for making bots using the Discord API.
Stars: ✭ 635 (-71.82%)
Mutual labels:  discord-api, bot, discord
Discord.js Menu
💬 Easily create Discord.js v12 embed menus with reactions and unlimited customizable pages.
Stars: ✭ 89 (-96.05%)
Mutual labels:  discord-api, bot, discord
Discord Bot Client
A patched version of discord, with bot login support
Stars: ✭ 441 (-80.43%)
Mutual labels:  discord-api, bot, discord
Deku
Multi-purpose discord bot built with discord.js
Stars: ✭ 13 (-99.42%)
Mutual labels:  discord-api, bot, discord
Commando
Official command framework for discord.js
Stars: ✭ 434 (-80.74%)
Mutual labels:  discord-api, bot, discord
Modmail
A feature rich discord Modmail bot
Stars: ✭ 957 (-57.52%)
Mutual labels:  discord-api, bot, discord
Disgord
Go module for interacting with the documented Discord's bot interface; Gateway, REST requests and voice
Stars: ✭ 277 (-87.71%)
Mutual labels:  discord-api, bot, discord
Xiao
Xiao is a Discord bot coded in JavaScript with discord.js using the Commando command framework. With over 500 commands, she is one of the most feature-rich bots out there. Formerly XiaoBot.
Stars: ✭ 302 (-86.6%)
Mutual labels:  discord-api, bot, discord
Smorebot
SmoreBot is a fun, lightweight, multipurpose bot packed with features.
Stars: ✭ 51 (-97.74%)
Mutual labels:  discord-api, bot, discord
Client
A Typescript NodeJS library to interact with Discord's API, both Rest and Gateway.
Stars: ✭ 84 (-96.27%)
Mutual labels:  discord-api, bot, discord

Discord.Net

NuGet MyGet Build Status Discord

An unofficial .NET API Wrapper for the Discord client (https://discord.com).

Documentation

Installation

Stable (NuGet)

Our stable builds available from NuGet through the Discord.Net metapackage:

The individual components may also be installed from NuGet:

Unstable (MyGet)

Nightly builds are available through our MyGet feed (https://www.myget.org/F/discord-net/api/v3/index.json).

Unstable (Labs)

Labs builds are avaiable on nuget (https://www.nuget.org/packages/Discord.Net.Labs/) and myget (https://www.myget.org/F/discord-net-labs/api/v3/index.json).

Compiling

In order to compile Discord.Net, you require the following:

Using Visual Studio

The .NET Core workload must be selected during Visual Studio installation.

Using Command Line

Known Issues

WebSockets (Win7 and earlier)

.NET Core 1.1 does not support WebSockets on Win7 and earlier. This issue has been fixed since the release of .NET Core 2.1. It is recommended to target .NET Core 2.1 or above for your project if you wish to run your bot on legacy platforms; alternatively, you may choose to install the Discord.Net.Providers.WS4Net package.

Versioning Guarantees

This library generally abides by Semantic Versioning. Packages are published in MAJOR.MINOR.PATCH version format.

An increment of the PATCH component always indicates that an internal-only change was made, generally a bugfix. These changes will not affect the public-facing API in any way, and are always guaranteed to be forward- and backwards-compatible with your codebase, any pre-compiled dependencies of your codebase.

An increment of the MINOR component indicates that some addition was made to the library, and this addition is not backwards-compatible with prior versions. However, Discord.Net does not guarantee forward-compatibility on minor additions. In other words, we permit a limited set of breaking changes on a minor version bump.

Due to the nature of the Discord API, we will oftentimes need to add a property to an entity to support the latest API changes. Discord.Net provides interfaces as a method of consuming entities; and as such, introducing a new field to an entity is technically a breaking change. Major version bumps generally indicate some major change to the library, and as such we are hesitant to bump the major version for every minor addition to the library. To compromise, we have decided that interfaces should be treated as consumable only, and your applications should typically not be implementing interfaces. (For applications where interfaces are implemented, such as in test mocks, we apologize for this inconsistency with SemVer).

Furthermore, while we will never break the API (outside of interface changes) on minor builds, we will occasionally need to break the ABI, by introducing parameters to a method to match changes upstream with Discord. As such, a minor version increment may require you to recompile your code, and dependencies, such as addons, may also need to be recompiled and republished on the newer version. When a binary breaking change is made, the change will be noted in the release notes.

An increment of the MAJOR component indicates that breaking changes have been made to the library; consumers should check the release notes to determine what changes need to be made.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].