Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A module for creating Discord bots using NestJS, based on Discord.js.
A module for creating Discord bots using NestJS, based on Discord.js.
This package uses the best of the NodeJS world under the hood. Discord.js is the most powerful library for creating bots and Nest.js is a progressive framework for creating well-architectured applications. This module provides fast and easy way for creating Discord bots and deep integration with your NestJS application.
Features
For questions and support please use the Issues.
Node.js 16.6.0 or newer is required.
$ npm i necord discord.js
$ yarn add necord discord.js
$ pnpm add necord discord.js
Once the installation process is complete, we can import the NecordModule
into the root AppModule
:
import { NecordModule } from 'necord';
import { Module } from '@nestjs/common';
import { Intents } from 'discord.js';
@Module({
imports: [
NecordModule.forRoot({
token: 'DISCORD_BOT_TOKEN',
intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.DIRECT_MESSAGES]
})
],
providers: []
})
export class AppModule {
}
Then create app.update.ts
file and add On
/Once
decorators for handling Discord API events:
import { Injectable, Logger } from '@nestjs/common';
import { Context, On, Once } from 'necord';
import { Client } from 'discord.js';
@Injectable()
export class AppUpdate {
private readonly logger = new Logger(AppUpdate.name);
@Once('ready')
public onReady(@Context() client: Client) {
this.logger.log(`Bot logged in as ${client.user.username}`);
}
@On('warn')
public onWarn(@Context() message: string) {
this.logger.warn(message);
}
}
Whenever you need to handle any event data, use the Context
decorator.
If you want to fully dive into Necord check out these resources:
FAQs
A module for creating Discord bots using NestJS, based on Discord.js
The npm package necord receives a total of 1,259 weekly downloads. As such, necord popularity was classified as popular.
We found that necord 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.