@lunacord/core
v1.0.0-beta
Published
Builder-first Lavalink v4 client for Bun and Node.js. Nodes, players, queues, filters, lyrics, plugins, cache — all with a strictly-typed API.
Maintainers
Readme
@lunacord/core
Builder-first Lavalink v4 client for Bun and Node.js.
import { Lunacord } from "@lunacord/core";
const lunacord = Lunacord.create()
.userId("bot-user-id")
.shards(1)
.nodeSelection.leastLoaded()
.build();
await lunacord
.createNode()
.setId("main")
.setHost("localhost")
.setPort(2333)
.setPassword("youshallnotpass")
.register();
await lunacord.connect();For the batteries-included discord.js integration, see @lunacord/discordjs.
