Coder Social home page Coder Social logo

diskord's Introduction

Diskord ๐Ÿค–

JavaScript/Node.js library to create simple answer bots for Discord messaging app

This library is not production bullet-proof ready, use at your own risk

Simple Discord Bot

  • $ npm install -S diskord OR
  • $ yarn add diskord

Requirements

Usage

Create your bot instance

First, you will need to create your bot instance aka login to the bot.

const Diskord = require('diskord');
const bot = new Diskord({ token: 'XXXX' });

Register a simple answer

Then you can create actions, theses actions will react to a message sent by a user. You can filter actions to trigger them only on a specified channel or a server.

Let's create a simple action, the ping request:

bot.registerAction({
  trigger: 'ping',
  action: 'pong'
});

Writing ping or !ping in the channel where the bot is present will trigger the action.

Register an action with a function

For more complex operations you can register a function to your action:

bot.registerAction({
  trigger: 'hi',
  action: function(params) {
    // params = {
    //   author: {},
    //   args: string[],
    //   reply: Function
    // }
    reply(`Welcome ${params.author.username}! How are you?`);
  }
});

Register an action accepting arguments

Most of the time you want user to interact with the bot by providing options, it's easy to do it:

bot.registerAction({
  trigger: 'weather',
  action: function(params) {
    const city = params.args[0];
    if (!city) return reply('Usage: !weather Paris');

    [...]

    reply(`The temperature in ${city} is ...`);
  }
});

API

new Diskord(SimpleBotOptions)

SimpleBotOptions = {
  token: 'XXXX' // Secret bot token
}

registerAction(Action)

Action = {
  trigger: string // Message (with or without prefix '!') to match
  action: string | ActionFunction // Action to start on when trigger match
}

ActionFunction = function(params) {
  // params = {
  //   author: { username: string },
  //   args: string[],
  //   reply: Function
  // }
}

TODO

  • Spam protection
  • Documentation on how to make great messages
  • Support of attachment in answers
  • Ideas? Create an issue!

diskord's People

Contributors

iam4x avatar

Stargazers

 avatar

Watchers

 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.