3.0.0 • Published 4 years ago

dcjs v3.0.0

Weekly downloads
5
License
Apache-2.0
Repository
-
Last release
4 years ago

Danktronics Chat JS Library

The official library for interacting with the Danktronics Chat API

Installation

npm install dcjs

Example

Creating a connection and sending a message

const DC = require("dcjs");
const client = new DC("token");

client.on("ready", () => {
    console.log("Connected to Danktronics Chat.");
});

client.on("messageCreate", message => {
    message.channel.createMessage("message received");
});

client.connect();
3.0.0

4 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago