Code Monkey home page Code Monkey logo

sern.handler's Introduction

Sern Handler

NPM version NPM downloads Builds Passing

Sern can automate and streamline development of your discord bot with new version compatibility and full customization.

Installation

npm install sern-handler
yarn add sern-handler
pnpm add sern-handler

Basic Usage

index.js (CommonJS)

const { Client, Intents } = require('discord.js');
const { Sern } = require('sern-handler');
const { prefix, token } = require('./config.json');

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

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

client.login(token);

ping.js (CommonJS)

const { Sern, Types } = require('sern-handler');

module.exports = {
  alias: [],
  desc: 'A ping pong command',
  visibility: 'private',
  test: false,
  type: Sern.CommandType.SLASH | Sern.CommandType.TEXT,
  execute: async ({ message, interaction }, args) => 'pong!',
};

See documentation for TypeScript examples and more

Links link

Contribute

  • Pull up on issues and tell us, if there are bugs
  • All kinds of contributions are welcomed!

TODO

  • Default commands
  • Categories
  • Ruling out all bugs in the command system
  • Better support for slash commands
  • More Build scripts
  • Logger

sern.handler's People

Contributors

evolutionx-10 avatar jacoobes avatar mchccn avatar murtatrxx avatar renovate-bot avatar trueharuu avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.