Biscord

The most advanced framework for Discord.js yet.

Documentation

Advance Framework

Powerful and Advanced Client and Server constructor.

Flexible

Flexible managers and constructors.

Management-Rich

Manage every inch of Biscord.

Handled Errors

Errors doesn't stop us from developing.

Pure JS

Full javascript support.

# With great framework, anything is posibble.

Create your client as easy as that.

# Installation & Update


  npm install biscord

  npm update biscord

1
2
3
4
5

  var biscord = require('biscord');
  
  var Biscord = new biscord();

  var Client = Biscord.initialize({
    token: TOKEN,
    clientId: CLIENTID
  });

  Biscord.initialize();

1
2
3
4
5
6
7
8
9
10
11
12