npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

discord-tunes

v1.2.3

Published

A Simple and easy Package made to run music with YT

Downloads

36

Readme

✨ Features

Customizable and easy to use. Supports Youtube Supports youtube playlists.

📥 Installation

Wait! Before you install, you need..

Node.js

Discord.js v13+

After this, you can finally install the package with:

$ npm install discord-tunes

🔎 Functions There are a lot of functions, that are probably useful to know.

Music:

.playTrack - start a track.

.pause - pause the song.

.resume - resume the songs.

.toggleLoop - make it loop or not.

.setVolume - set the volume to a random amount.

.stop - stop the music and make the bot leave.

.volumeUp - raise the volume.

.volumeDown - decrease the volume.

.joinVoiceChannel - make the bot join the channel.

.addTrack - can add multiple songs to a queue to play after another.

Information:

.title - Display the songs title.

.author - displays the authors name of the song.

.thumbnail - displays the thumbnail of the song.

🔎 Example:


const { Client, Message, MessageActionRow, MessageButton, MessageEmbed } = require('discord.js');
const MusicPlayer = require('discord-tunes');

const musicPlayer = new MusicPlayer();

module.exports = {
  name: 'test',
  premium: false,
  disable: false,

  run: async (client, message, args) => {
const resource = musicPlayer.audioPlayer.state.resource;

    const songChannel = message.member.voice.channel;
    if (!songChannel) return message.reply("You must be in a voice channel.");

    const query = args.join(' ');
    if (!query) {
      return message.reply('Please provide a search query.');
    }

    try {
      await musicPlayer.joinVoiceChannel(songChannel);
      musicPlayer.playTrack(query);

      const pauseButton = new MessageButton()
        .setCustomId('pause')
        .setLabel('Pause')
        .setStyle('PRIMARY');

      const resumeButton = new MessageButton()
        .setCustomId('resume')
        .setLabel('Resume')
        .setStyle('PRIMARY');

      const volumeUpButton = new MessageButton()
        .setCustomId('volume_up')
        .setLabel('Volume Up')
        .setStyle('PRIMARY');

      const volumeDownButton = new MessageButton()
        .setCustomId('volume_down')
        .setLabel('Volume Down')
        .setStyle('PRIMARY');

      const row = new MessageActionRow()
        .addComponents(pauseButton, resumeButton, volumeUpButton, volumeDownButton);




      const musicControlsMessage = await message.channel.send({ content: `Music Controls`, components: [row] });

      const filter = (interaction) => interaction.user.id === message.author.id;
      const collector = musicControlsMessage.createMessageComponentCollector({ filter, time: 60000 });

      collector.on('collect', async (interaction) => {
        if (interaction.customId === 'pause') {
          musicPlayer.pause();
          await interaction.reply('Song paused.');
        } else if (interaction.customId === 'resume') {
          musicPlayer.resume();
          await interaction.reply('Song resumed.');
        } else if (interaction.customId === 'volume_up') {
          musicPlayer.volumeUp();
          await interaction.reply('Volume increased.');
        } else if (interaction.customId === 'volume_down') {
          musicPlayer.volumeDown();
          await interaction.reply('Volume decreased.');
        }
      });

 
    } catch (error) {
      console.error(error);
      message.reply('An error occurred while playing the music.');
    }
  }
};

🔗 • Links:

https://discord.gg/WFWnMAP5Uk