Skip to content

FuelinkLavalink Client for Node.js

A powerful, feature-complete audio engine for Discord bots

Quick Install

bash
npm install fuelink

Basic Usage

javascript
const { Client, GatewayIntentBits } = require('discord.js');
const { Fuelink } = require('fuelink');

const client = new Client({
  intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates]
});

const fuelink = new Fuelink({
  nodes: [{ name: 'main', host: 'localhost', port: 2333, password: 'youshallnotpass' }]
});

client.once('ready', async () => {
  await fuelink.init(client);
  console.log('Ready!');
});

client.login('YOUR_TOKEN');

Released under the MIT License.