Files
handler/README.md
2022-02-14 16:43:08 +03:00

1.2 KiB

Sern

Sern is making easier to create & automate your discord bot with new version compatibility and full customization.

Installation

npm install sern-handler
yarn add sern-handler

Basic Usage

TypeScript or JavaScript

import { Client, Intents } from 'discord.js';
import { prefix, token } from '../src/secrets.json';
import { Handler } from 'sern-handler';

const client = new Client({
    intents: [
        Intents.FLAGS.GUILDS,
        Intents.FLAGS.GUILD_MESSAGES,
        Intents.FLAGS.GUILD_MEMBERS
    ]
});

 new Handler( {
    client,   
    prefix,   
    commands : "dist/commands",  
    privateServers : [           
        {
            test : true,
            id: "server id"
        }
    ],
    init: async (handler : Sern.Handler) => {
        // Optional function to initialize anything else on bot startup
    },
});


client.login(token);

Links

Contribute

  • Pull up on issues and tell me if there are bugs.
  • Check issues.
  • Any contributions are open to suggestion!