Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Dismusic, a performance focused music system made for Discord.js version 14
Install Dismusic
npm i dismusic@latest
Then install ffmpeg-static and @discordjs/opus
npm i ffmpeg-static @discordjs/opus
const { Player } = require('dismusic')
const { Client, GatewayIntentBits: Intents } = require('discord.js')
const client = new Client({
intents: [Intents.Guilds, Intents.GuildVoiceStates, Intents.MessageContent, Intents.GuildMessages]
})
const player = new Player(client)
player.on('trackStart', async function(queue, track) {
console.log(queue, track)
})
client.on('messageCreate', async (message) => {
if(!message.content.startsWith('!')) return
const raw = message.content.replace('!', '')
const args = raw.split(' ')
const command = args.splice(0, 1)[0]
if(command === 'play') {
const res = await player.search(args.join(' '))
const existsQueue = await player.existsQueue(message.guild)
if(existsQueue) {
const queue = await player.getQueue(message.guild)
message.reply('<a:host_loading:1022886955266080789> Adding track(s) ' + res[0].name)
queue.addTrack(res[0])
} else {
const queue = await player.createQueue(message.guild, {
// metadata will stay with the queue until it is destroyed
metadata: {
channel: message.channel
}
})
await queue.connectTo(message.member.voice.channel)
queue.play(res[0])
message.reply('<a:host_loading:1022886955266080789> Adding track(s) ' + res[0].name)
}
}
if(command === 'skip') {
const queue = await player.getQueue(message.guild)
queue.skip()
}
})
client.on('ready', () => console.log(`Logged in as ${client.user.tag}`))
client.login('')
There are docs for the package here
If you encountered any problems or have a question, feel free to join our discord server
FAQs
An easy music package for discord.js version 14
The npm package dismusic receives a total of 147 weekly downloads. As such, dismusic popularity was classified as not popular.
We found that dismusic demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.