Bord-Pi

Un robot Discord gérant et aidant les utilisateurs pour votre propre serveur. (by thomasbnt)

Bord-Pi Alternatives

Similar projects and alternatives to Bord-Pi

  • node

    930 Bord-Pi VS node

    Node.js JavaScript runtime ✨🐢🚀✨

  • beepBot

    1 Bord-Pi VS beepBot

    🤖 24/7 hosted, feature-rich and customizable Discord Bot for all your needs. [Verified]

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • LenoxBot

    1 Bord-Pi VS LenoxBot

    Discontinued 🖥️ LenoxBot is a Discord bot that offers many cool new features to your Discord server!

  • Hurricano

    5 Bord-Pi VS Hurricano

    An amazing open-source Discord bot using MongoDB with many features such as a customizable prefix, a reaction menu, music, role requirement giveaways and much more!

  • WiseMan-DiscordBot

    The wiseMan bot allows you to level up based on the time you spend in a vocal channel

  • discord-sync-commands

    Easily keep your bot's slash commands synchronized with Discord

  • Discord-Reposter

    Discontinued Bot for reposting Discord messages (work in progress)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Bord-Pi alternative or higher similarity.

Bord-Pi reviews and mentions

Posts with mentions or reviews of Bord-Pi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-05.
  • Creating a Discord bot with Slash Commands
    3 projects | dev.to | 5 Feb 2023
    /** @document : app.js @author : Thomas Bnt @version : 3.0.0 @copyright : 2023, Thomas Bnt @license : GNU General Public License v3.0 @repository : https://github.com/thomasbnt/Bord-Pi @description: Un robot Discord gérant et aidant les utilisateurs pour un serveur. */ const fs = require('fs') const { Client, Collection, GatewayIntentBits, Options } = require('discord.js') const client = new Client({ // The intents will depend on what you want to do with the robot, // but don't forget to activate them in your discord.dev dashboard // at the address https://discord.com/developers/applications/{ID}/bot, // section "Privileged Gateway Intents" intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages ], }) // We create a collection for commands client.commands = new Collection() const commandFiles = fs .readdirSync('./commands') .filter((file) => file.endsWith('.js')) for (const file of commandFiles) { const command = require(`./commands/${file}`) client.commands.set(command.data.name, command) } // Events like ready.js (when the robot turns on), // or messageCreate.js (when a user/robot sends a message) const eventFiles = fs .readdirSync('./events') .filter((file) => file.endsWith('.js')) for (const file of eventFiles) { const event = require(`./events/${file}`) if (event.once) { client.once(event.name, (...args) => event.execute(...args, client)) } else { client.on(event.name, (...args) => event.execute(...args, client)) } } // The interactionCreate event directly here, as this is the heart of the robot. client.on('interactionCreate', async (interaction) => { if (!interaction.isCommand()) return const command = client.commands.get(interaction.commandName) if (!command) return // We log when a user makes a command try { await console.log( `/${interaction.commandName} — Par ${interaction.user.username}` ) await command.execute(interaction, client) // But if there is a mistake, // then we log that and send an error message only to the person (ephemeral: true) } catch (error) { console.error(error) return interaction.reply({ content: "An error occurred while executing this command!", ephemeral: true, fetchReply: true }) } }) // The token of your robot to be inserted client.login("NICE TOKEN NEVER TO BE DISCLOSED")

Stats

Basic Bord-Pi repo stats
1
12
7.4
4 days ago

thomasbnt/Bord-Pi is an open source project licensed under GNU General Public License v3.0 only which is an OSI approved license.

The primary programming language of Bord-Pi is JavaScript.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com