0.0.3 • Published 5 years ago

discord-noob v0.0.3

Weekly downloads
10
License
-
Repository
github
Last release
5 years ago

discord-noob

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

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago