Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kabirjaipal/girlfriend-bot-javascript
i made a girlfriend bot using discord.js javascript nodejs
https://github.com/kabirjaipal/girlfriend-bot-javascript
chatbot discord discord-bot discord-js discord-music-bot gf-bot girlfriend nodejs player text-to-speech voice-chat voice-recognition
Last synced: 3 months ago
JSON representation
i made a girlfriend bot using discord.js javascript nodejs
- Host: GitHub
- URL: https://github.com/kabirjaipal/girlfriend-bot-javascript
- Owner: kabirjaipal
- License: mit
- Created: 2022-07-12T12:38:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-17T07:24:49.000Z (12 months ago)
- Last Synced: 2024-06-16T19:23:57.161Z (7 months ago)
- Topics: chatbot, discord, discord-bot, discord-js, discord-music-bot, gf-bot, girlfriend, nodejs, player, text-to-speech, voice-chat, voice-recognition
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GirlFriend Bot Discord.JS
## Installation | How to Use the Bot
1. **Install [Node.js V20](https://nodejs.org/en/) or higher:**
- Visit the Node.js website and download the latest version of Node.js.
2. **Clone the Repository:**
- Download this repository and unzip it, or use Git to clone it to your local machine.
```bash
git clone https://github.com/your-username/GirlFriend-Bot-JavaScript.git
```3. **Fill in Configuration:**
- Open the `config.js` file and fill in the required information.
```javascript
// config.js
module.exports = {
TOKEN: process.env.DISCORD_TOKEN,
};
```Create a `.env` file in the root directory and set your Discord token:
```env
DISCORD_TOKEN=your_bot_token_here
```4. **Install Dependencies:**
- Navigate to the project directory and install the required dependencies.
```bash
npm install
```5. **Start the Bot:**
- Run the following command to start the bot.
```bash
node index.js
```## Configuration
Modify the `config.js` file to customize your bot. You can add more configuration options as needed.
```javascript
// config.js
require("dotenv").config();module.exports = {
token: process.env.DISCORD_TOKEN,
// Add more configuration options here
};
```## Contributing
If you find any bugs or have suggestions for improvements, feel free to open a pull request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.