1.0.0 • Published 1 year ago

der.js v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Neb.js

Neb.js - A package to create Discord bots easily.

Installation

To install neb.js use:

npm install neb.js

Example

const NebClient = require('neb.js');

const client = new NebClient({
  token: 'your bot token here',
  prefix: 'you bot prefix here',
  intents: ['Guilds', 'GuildMessages', 'MessageContent']
});

client.command({
  name: 'ping',
  code: 'Pong! My ping is: $ping'
});

client.start();
1.0.0

1 year ago