
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@eropple/nestjs-bunyan-logger
Advanced tools
This package provides a NestJS LoggerService that uses
Bunyan under the hood.
Just create a BunyanLoggerService with your preferred root logger and pass it
to the logger option of NestFactory.create().
import { NestFactory } from '@nestjs/core';
import * as Bunyan from "bunyan";
import { BunyanLoggerService } from "@eropple/nestjs-bunyan-logger";
import { AppModule } from './app.module';
const ROOT_LOGGER = Bunyan.createLogger({ name: "mycoolapp", level: Bunyan.DEBUG });
async function bootstrap() {
const app = await NestFactory.create(AppModule, {
logger: new BunyanLoggerService(ROOT_LOGGER)
});
await app.listen(3000);
}
bootstrap();
FAQs
Provides a NestJS LoggerService, using Bunyan.
We found that @eropple/nestjs-bunyan-logger 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.