0.0.5 • Published 5 years ago

niscord v0.0.5

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

About

Niscord is a powerful JavaScript library for Discord API.

  • Powerful
  • Object-oriented
  • Easy-to-use
  • Performant

Installation

Node.js 4.0.0 or newer is required.

Voice isn't supported yet.

Stable: npm i niscord

Master: npm i niscord/niscord

Dev: Not published

Example usage

const Niscord = require('niscord');
const client = new Niscord.Client();

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

client.on('message', (message) => {
  if (message.content === 'hello') {
    return message.reply('Hello');
  }
});

client.login('Client token');

Links

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago