0.1.4 • Published 6 years ago

nodejscord v0.1.4

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

NodeJSCord

A Simple (WIP) API Wrapper for Discord

Documentation

Click Here

Example

const NodeJSCord = require('nodejscord');
const client = new NodeJSCord.Client('YOUR BOT TOKEN');

client.on('ready', () => {
    console.log(`Logged in as ${client.user.tag}`)
});

client.on('message', (message) => {
    if (message.content === 'ping') {
        message.channel.sendMessage('Pong!');
    };
});

client.connect();

Support

Join our Support Server Here!

0.1.4

6 years ago

0.1.3

6 years ago

0.2.0

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago