> For the complete documentation index, see [llms.txt](https://amukh1.gitbook.io/chakra-engine/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://amukh1.gitbook.io/chakra-engine/what-is-my-package-for.md).

# What is my package for?

{% hint style="warning" %}
Warnin&#x67;**:** Chakra is still very buggy and is still in development!
{% endhint %}

{% hint style="info" %}
**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.
{% endhint %}

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

{% code title="index.js" %}

```javascript
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)
```

{% endcode %}

{% hint style="info" %}
**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.
{% endhint %}

### Important lessons:&#x20;

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

{% content-ref url="/pages/OnJMK4muDFcELX8QefEU" %}
[Creating your first command](/chakra-engine/guides/creating-your-first-command.md)
{% endcontent-ref %}

{% content-ref url="/pages/lU5i3k4StOa3ybVspkJM" %}
[Creating your oauth URL](/chakra-engine/guides/creating-your-oauth-url.md)
{% endcontent-ref %}
