Discord-Chatbot
Quick Chatbot API wrapper for your discord bot and many other things.
Features
-
Beginner friendly
-
Easy to use
-
Asynchronous
Quick Example
const Chatbot = require("discord-chatbot");
const chatbot = new Chatbot({name: "Udit", gender: "Male"});
chatbot.chat("Hello").then(response=>console.log(response)).catch(e => console.log(e));
/*
Hi, my friend! Do you want me to tell you a story?
*/