Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
distivities
Advanced tools
Play games, Watch Youtube and more. Inspired by Remyk888's Discord Together
⚠ In development.
Installing the package
# npm
npm i distivities
# yarn
yarn add distivities
const { Client, GatewayIntentBits: Intents, Partials } = require('discord.js')
const client = new Client({
intents: [Intents.Guilds, Intents.GuildMessages, Intents.GuildInvites, Intents.MessageContent], // Guild invite intent is needed
partials: [Partials.Channel, Partials.GuildMember, Partials.Message]
})
const Activities = require('distivities')
const inviteGenerator = new Activities(client)
client.on('ready', () => {
console.log(`${client.user.tag} is ready!`)
})
client.on('messageCreate', async (message) => {
if(message.content.toLowerCase() === "!youtube") {
if(!message.member.voice.channelId) return message.reply('Please join a vc first')
const inviteCode = await inviteGenerator.getInviteCode(String(message.member.voice.channelId), "ytNew")
// if code could not be generated, inviteCode will return "no code" as a string
/**
* if(inviteCode === "no code") return message.reply("I do not have the permission to perform this action")
**/
message.reply(inviteCode)
}
})
client.login('your bot token')
ytOld (YouTube old version might not work)
ytNew
pokerNight
betrayal
fishington
chess
sketchyArtist
awkword
doodleCrew
sketchHeads
letterLeague
wordSnacks
spellCast
checkers
blazing8s
puttParty
landIo
bobbleLeague
askAway
knowWhatIMeme
To create an invite code for developer applications, we can use getDevInviteCode(voiceChannelId, appName, requestOptions)
function
pn
youtube
doodleCrew
⚠ Developer applications may not work sometimes
To create an invite code using custom ID, we can use getCodeById(voiceChannelId, appID, requestOptions)
function.
Thanks to RemyK888 for the inspiration. For more information check out his package and his github
If you encounter any problems using this package, you can join our discord server
FAQs
Play games, Watch Youtube and more. Inspired by Remyk888's Discord Together
We found that distivities 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.