What is my package for?

Chakra Is for the ease of making discord bots. It automates many tedious tasks.

Warning: Chakra is still very buggy and is still in development!

Good to know: Chakra was mainly designed with beginners in mind, making more complicated tasks easier, as a tradeoff, more experienced developers will lose customizability.

Here are a couple of examples of some amazing bots made with Chakra:

No bots have been made yet. (This gives you better chances of being shown up here if you make a bot)

— From Noone (yet)

No bots have been made yet. (This gives you better chances of being shown up here if you make a bot)

— From Noone (yet)

Getting Started

index.js
const Discord = require('discord.js')
const client = new Discord.Client()
const engine = require('chakra-engine')
const config = JSON.parse(require('./config.json'))

const token = config.token
// V for logging into the website
const oauthLink = config.oauthLink
// V port for website
const PORT = config.port || 80
// V so the engine can read your package.json
const pack = require('package.json')

engine.initialize(token, oauthLink, PORT, pack)

Good to know: Chakra builds a full and feature-full website up from the ground when you launch your project, and uses discord oauth2 to set up a sign-up/in system.

Important lessons:

Learn the fundamentals of Chakra to get a deeper understanding of our main features:

pageCreating your first commandpageCreating your oauth URL

Last updated