/discord-noob

A module to easily make a bot discord without having programming skills.

Primary LanguageJavaScript

discord-noob

npm installnfo

Table of contents

About

discord-noob is a project to make easily a discord bot based on discord.js for noobs.

  • User-friendly
  • No programming needed
  • YML language

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 13.0.1 or higher is required.

$ npm install discord-noob

Example usage

// index.js
const path = require('path');
const Noob = require('discord-noob');

const noob = new Noob.Client({
    token: 'token',
    prefix: '!'
});

noob.load(path.join(__dirname, 'command.yml'));
# command.yml
ping:
    unique: true
    message:
        content:
            - pong
        react:
            - 🏓

Result:

pong-test