├── list ├── withSSL.js └── noSSL.js └── README.md /list/withSSL.js: -------------------------------------------------------------------------------- 1 | // use with secure options 2 | 3 | const Lavalink = { 4 | host: "lavalink.devin-dev.xyz", // hostname 5 | port: 443, // port 6 | password: "lava123", // password 7 | secure: true // whether the host uses SSL 8 | } 9 | -------------------------------------------------------------------------------- /list/noSSL.js: -------------------------------------------------------------------------------- 1 | // use without secure options, or you can added by secure: false 2 | 3 | const Lavalink = { 4 | host: "lava.devin-dev.xyz", // hostname 5 | port: 3888, // port 6 | password: "ayraiscute", // password 7 | secure: false, // because the host doesn't use SSL 8 | } 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lavalink-Host 2 | - [x] Ready to use (For any use) 3 | - [x] 24/7 Uptime (Guaranteed not to crash or random disconnect and etc) 4 | - [x] Full service for discord music bot wrapped with Lavalink Client (Without self-hosting required) 5 | 6 | ## CHOOSE ONE BELOW 7 | > [NO SSL](/list/noSSL.js) 8 | ```bash 9 | host: lava.devin-dev.xyz 10 | port: 3888 11 | password: ayraiscute 12 | secure: false 13 | ``` 14 | > [WITH SSL](/list/withSSL.js) 15 | ```bash 16 | host: lavalink.devin-dev.xyz 17 | port: 443 18 | password: lava123 19 | secure: true 20 | ``` 21 | 22 | Find more lavalink host [here](https://lavalink-list.darrennathanael.com) 23 | 24 | **Also can be used directly for discord music bot public repositories based on lavalink**: 25 | * [Discord-MusicBot](https://github.com/SudhanPlayz/Discord-MusicBot) by [@SudhanPlayz](https://github.com/SudhanPlayz) 26 | * [lavalink-musicbot](https://github.com/Allvaa/lavalink-musicbot) by [@Allvaa](https://github.com/Allvaa) 27 | * [lavamusic](https://github.com/brblacky/lavamusic) by [@brblacky](https://github.com/brblacky) 28 | * [noteblock](https://github.com/KagChi/noteblock) by [@KagChi](https://github.com/KagChi) 29 | * [discord-js-lavalink-music-bot](https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js) by [@Tomato6966](https://github.com/Tomato6966) 30 | 31 | # 🏷️ 32 | Having trouble using my lavalink? feel free to open a [issues](https://github.com/DevinOfficial/Lavalink-Host/issues) or [pull requests](https://github.com/DevinOfficial/Lavalink-Host/pulls) for anything to support on this project 33 | 34 | ⭐ Give a star if you enjoy using this service! 35 | --------------------------------------------------------------------------------