
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
discord.js-akinator
Advanced tools
A Discord.js v13 Module that allows you to Create an Akinator Command for Your Discord Bot within Seconds of Installation.
A Discord.js v13 Module that allows you to Create an Akinator Command for Your Discord Bot within Seconds of Installation.
UPDATE 3.0.0 - Lots of New Changes! (and some breaking, so be careful!)
New Features Include:
Discord.js Akinator no longer relies on other Akinator API servers to translate, as they are all slow and laggy apart from the European one. Also, they would only translate the questions and nothing else!
By utilising Google Translate and creating hard-coded translation mappings, OVER 100 NEW LANGUAGES are now supported! Also, every piece of text is now translatable, not just the questions!
With this new option, you can choose to use the new discord buttons!
Do keep in mind that it is false
by default.
Want to filter out NSFW questions? Simply set this option to true
!
Again, this will default to false
.
The package no longer requires you to pass in a Discord.Client
object to function.
Just pass in the Discord.Message
and it'll handle the rest!
Let's take a look at how you can install this package into your Discord Bot Project.
npm i discord.js-akinator --save
For versions 3.0.0 and Above, you'll also need discord.js v13. This can easily be installed with:
npm i discord.js@13 --save
For versions earlier than 3.0.0, you'll need discord.js v12. However it is recommended you update to patch bugs and security vulnerabilities, as well as getting the newest features from this package!
npm i discord.js@12 --save
const { Client, Intents } = require("discord.js");
const akinator = require("discord.js-akinator");
const client = new Client({ intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES] });
client.on("ready", () => {
console.log("Bot is Online")
});
const PREFIX = "!";
//Example options
const language = "en"; //The Language of the Game
const childMode = false; //Whether to use Akinator's Child Mode
const useButtons = true; //Whether to use Discord's Buttons
client.on("messageCreate", async message => {
if(message.content.startsWith(`${PREFIX}akinator`)) {
akinator(message, {
language: language, //Defaults to "en"
childMode: childMode, //Defaults to "false"
useButtons: useButtons //Defaults to "false"
});
}
});
client.login("Discord Bot Token")
ChaosArising (Josh_#9733) (Providing compatibility for Discord.js v13)
3061LRTAGSPKJMORMRT (Ashish#0540) (Error handling and writing much cleaner code)
FAQs
A Discord.js v14 module that allows you to create an Akinator command for your discord bot in a matter of seconds.
The npm package discord.js-akinator receives a total of 414 weekly downloads. As such, discord.js-akinator popularity was classified as not popular.
We found that discord.js-akinator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.