Getting Started


proton-io is a powerful bot framework for discord.js(v13). The package is designed to make developers work freely and easily.


if you are new proton-io this section for you!

First, you must be install proton-io using this node command:

npm install proton-io

if you are saying how can i use this module? don't panic. we write here some example:

const { ProtonClient } = require("proton-io"); const { Intents } = require("discord.js"); class Client extends ProtonClient { super({ owners:["Client owner id(s)"], intents: Object.values(Intents.FLAGS).reduce((p, c) => p + c, 0)) }); } const client = new Client(); client.login("YOUR TOKEN HERE");

if you are look at some more guide codes visit here!