/disc.script

The all-new Discord API wrapper for JavaScript.

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

Welcome to Disc.Script

Overview

Disc.Script is a new and modern Discord API Wrapper for JavaScript/NodeJS. It works via the Discord API.

Features

Currently, Disc.Script can connect to the Discord Gateway, Identify via a bot token and send messages in a channel. We are actively working on Reactions, Replies and Receiving messages right now, and will be released soon when they are ready.

Usage

const Discord = require("disc.script");
const gateway = new Discord.Gateway();

Discord.Event.on("ready", () => {
  console.log("ready");
});

gateway.start("token");

Installation: npm i disc.script