1.0.3 • Published 4 years ago

nestbot v1.0.3

Weekly downloads
4
License
GPL-3.0-or-later
Repository
github
Last release
4 years ago

NestBOT-Framework

Discord.JS small Framework for buildings bots

Sample index file

const Discord = require('discord.js');
const client = new Discord.Client();

// Importing NestBOT framework
const NestBOT = require('nestbot');


// Import commands
    NestBOT.addCommand( 'Command code. Can be added as file by require' );


// Setting all needed configurations
    NestBOT.language( require('.JSON language file path') );
    NestBOT.config( require('.JSON config file path') );


// Initializing all NestBOT events
    NestBOT.init(client);


// Starting the bot
    NestBOT.login(client);
1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago