
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
amtixdev-run
Advanced tools
amtixdev-run is an npm package that provides classes for creating and managing Discord bots, handling user-related functionalities, and automating reactions and actions in Discord servers.
amtixdev-run is an npm package that provides classes for creating and managing Discord bots, handling user-related functionalities, and automating reactions and actions in Discord servers.
To use amtixdev-run in your project, install it via npm:
npm install amtixdev-run
userAccountconst { userAccount } = require('amtixdev-run');
// Instantiate userAccount with your Discord client and Discord.js
const userAccountManager = new userAccount(client, Discord);
// Use the methods of userAccount as needed
userAccountManager.autoReaction({
channel: 'CHANNEL_ID',
user: 'USER_ID',
token: 'YOUR_DISCORD_TOKEN',
reactionName: '🎉',
timeout: 5000,
blacklistedwords: ['blacklist1', 'blacklist2']
});
userAccountManager.leveling({
channel: 'CHANNEL_ID',
randomLetters: false,
time: 15000,
type: 'eng'
});
botAccountconst { botAccount } = require('amtixdev-run');
// Instantiate botAccount with your Discord client and Discord.js
const botAccountManager = new botAccount(client, Discord);
// Use the broadcast method to send messages to users
botAccountManager.broadcast({
ownerId: ['OWNER_ID_1', 'OWNER_ID_2'],
prefix: '!',
embedReply: 'Made by amtixdev-run.',
mention: false,
type: 'all' // or 'online'
});
The GetBotToken event is emitted by the createBot class when the bot's token is retrieved successfully after creation. You can listen for this event and handle the token as needed.
const { amtixdev } = require('amtixdev-run');
// Listen for the GetBotToken event
amtixdev.on('GetBotToken', (token) => {
console.log(`Bot token retrieved: ${token}`);
});
Feel free to contribute to this package by opening issues or pull requests. Your feedback and contributions are highly appreciated.
This package is licensed under the MIT License.
FAQs
amtixdev-run is an npm package that provides classes for creating and managing Discord bots, handling user-related functionalities, and automating reactions and actions in Discord servers.
We found that amtixdev-run 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.