https://github.com/prantadas/discord-message-tracker-bot
The Discord Message Tracker Bot is a simple Discord bot designed to monitor messages from specified users within a channel. The bot serves as a tool to track and log messages, providing insights into user activity on the server.
https://github.com/prantadas/discord-message-tracker-bot
discord-js discrod-bot express-js mongoose
Last synced: about 2 months ago
JSON representation
The Discord Message Tracker Bot is a simple Discord bot designed to monitor messages from specified users within a channel. The bot serves as a tool to track and log messages, providing insights into user activity on the server.
- Host: GitHub
- URL: https://github.com/prantadas/discord-message-tracker-bot
- Owner: PrantaDas
- License: mit
- Created: 2023-06-18T22:28:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-25T18:10:24.000Z (almost 2 years ago)
- Last Synced: 2025-02-15T02:16:43.961Z (8 months ago)
- Topics: discord-js, discrod-bot, express-js, mongoose
- Language: JavaScript
- Homepage:
- Size: 121 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Discord Message Tracker Bot
The Discord Message Tracker Bot is a simple Discord bot designed to monitor messages from specified users within a channel. The bot serves as a tool to track and log messages, providing insights into user activity on the server.
## Features
- **Message Monitoring:** The bot monitors messages from specified users within the designated channel.
- **Owner Notifications:** The bot sends notifications to the bot owner (creator) about new messages from monitored users.
- **User Profile Tracking:** The bot keeps track of user profiles, recording relevant information.
- **Express Dashboard:** The bot comes with an integrated Express server that provides a dashboard for managing bot-related functionalities through REST APIs.## Installation
1. Clone the repository:
```bash
git clone https://github.com/PrantaDas/discord-message-tracker-bot.git
cd discord-message-tracker-bot
```2. Install dependencies:
```bash
npm install or yarn
```3. Set up environment variables:
Create a `config` folder in the root directory and add a `dev.env` file inside with the following variables:
```
BOT_TOKEN=your_discord_bot_token
MONGODB_URL=your_mongodb_connection_url
SECRET_KEY=your_jwt_secret_key
```4. Run the bot:
```bash
yarn dev or npm run dev
```