
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@cycloneaddons/welcomer
Advanced tools
An unique Animated Welcome Image Generate With Discord.js & Aoi.js
npm i @cycloneaddons/welcomer
An unique Animated Welcome Image Generate For Discord
Eassy To Use in Discord.js & Aoi.js
const { Client, Intents, MessageAttachment } = require('discord.js');
const Welcomer = require('@cycloneaddons/welcomer');
const client = new Client({
intents: [
Intents.FLAGS.GUILD_MEMBERS
]
})
client.on("ready", () => {
console.log("Welcome bot is ready and connected to discord!");
})
client.on("guildMemberAdd", async member => {
const image = new Welcomer()
.setBackground("https://media.discordapp.net/attachments/1078243575776682034/1078568707716022334/uwp1085854.gif") //Provide The Gif,Jpg & Png Image Link note image size must less than 3mb
.setGIF(true) //Is Background Image Is Animated or Not option true/false
.setAvatar(member.user.displayAvatarURL({ format: "png" }))
.setName(member.user.username)
.setDiscriminator(member.user.discriminator)
.setBlur(2) //
const channel = await member.guild.channels.fetch()
.then(channels => channels.find(x => x.name === "channel name")) //provide channel name in which u want to send welcome image
return channel?.send({
files: [ new MessageAttachment(await image.generate(), "welcome.gif") ]
})
})
client.login("YOUR TOKEN")
Video Comming Soon

FAQs
An unique Animated Welcome Image Generate With Discord.js & Aoi.js
The npm package @cycloneaddons/welcomer receives a total of 2 weekly downloads. As such, @cycloneaddons/welcomer popularity was classified as not popular.
We found that @cycloneaddons/welcomer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.