Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including discordaudiov13 with all npm packages installed. Try it out:

var discordaudiov13 = require("discordaudiov13")

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

discordaudiov13 v1.0.3

- A Audio Player Which Very Easy to use ## Docs - Installing discordaudiov13 ``` npm install discordaudiov13 ``` - Joining Voice Channels ```js const da = require('discordaudiov13') client.on('messageCreate', async message => { const msg = da.init(message , client).message // Join the same voice channel of the author of the message if(message.content === "join"){ if (message.member.voice.channel) { const connection = msg.member.voice.channel.join(); } } }); ``` - Playing Audio ```js const da = require('discordaudiov13') const prefix = "!" client.on('messageCreate', async message => { if (!message.content.startsWith(prefix) || message.author.bot) return;

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free