https://github.com/alex23234/autobump
discord autobumper
https://github.com/alex23234/autobump
autobump bump disboard disboard-auto-bumper discord
Last synced: 17 days ago
JSON representation
discord autobumper
- Host: GitHub
- URL: https://github.com/alex23234/autobump
- Owner: alex23234
- License: unlicense
- Created: 2025-10-30T07:57:55.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-10-30T08:09:58.000Z (7 months ago)
- Last Synced: 2025-10-30T10:07:31.701Z (7 months ago)
- Topics: autobump, bump, disboard, disboard-auto-bumper, discord
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Discord Auto-Bumper
Node.js script that automatically bumps your Discord server on [Disboard](https://disboard.org/) every 2 hours
## Prerequisites
- [Node.js](https://nodejs.org/) (version 16.9.0 or newer is recommended)
- npm (comes bundled with Node.js)
**Install Dependencies**
```bash
npm install dotenv discord.js-selfbot-v13
```
**Configure env**
Make a .env file in project root
```env
DISCORD_TOKEN="user token"
```
**Find and Set Your Channel ID**
Turn on devoloper mode in settings and right click on the channel and copy id
open the `index.js` file
```javascript
const CHANNEL_ID = "PASTE_YOUR_CHANNEL_ID_HERE"; // Add your own channel id
```
## Run
```bash
node index.js
```