2.1.3 â€ĸ Published 3 years ago

dotwood.js v2.1.3

Weekly downloads
-
License
Apache
Repository
github
Last release
3 years ago

Dotwood.js

This framework makes creating a bot much easier! With this module you can create a good basis for bot

downloadsBadge versionBadge

ℹī¸ - About

Dotwood.js makes creating a bot even easier! With a few simple lines of code you can build your own bot very quickly

  • Discord.js version: V13.2.0
  • Simple functions

đŸ’ģ - Installation

Node.js 16.6.0 or newer is required.

npm install dotwood.js

📖 - Example

const Dotwood = require("dotwood.js");
const Discord = require('discord.js');

const client = new Dotwood.Client({
    token: "TOKEN", // Bot token
    id: "ID", // Bot id
    partials: ['MESSAGE', 'CHANNEL', 'GUILD_MEMBER', 'REACTION'], // Discord partials
    intents: [
        Discord.Intents.FLAGS.DIRECT_MESSAGES,
        Discord.Intents.FLAGS.GUILDS,
        Discord.Intents.FLAGS.GUILD_MESSAGES,
        Discord.Intents.FLAGS.GUILD_VOICE_STATES,
        Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS
    ], // Discord intents
})

client.setPrefix("!"); // Bot prefix > !help, !test
client.login();

🔗 - Links

📑- License

This project has an Apache 2.0 license

2.1.2

3 years ago

2.1.3

3 years ago

2.1.1

3 years ago

2.0.2

3 years ago

2.1.0

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

2.0.0-beta.2

3 years ago

2.0.0-beta.1

3 years ago

2.0.0-beta.0

3 years ago

2.0.0-dev

3 years ago

1.2.0

3 years ago

1.3.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago