
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.
@treelab/logger-metrics-middleware
Advanced tools
import { HttpLoggerMiddleware } from '@treelab/logger-metrics-middleware'
import * as Prometheus from 'prom-client'
// 日志
app.use(HttpLoggerMiddleware())
// 指标
app.use('/metrics', async (req, res) => {
res.set('Content-Type', Prometheus.register.contentType)
const end = await Prometheus.register.metrics()
res.end(end)
})
}
{
prettyPrint?: boolean // 是否以json方式输出, 默认false
... // 后续新增..
}
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { HttpLoggerMiddleware } from '@treelab/logger-metrics-middleware'
import * as Prometheus from 'prom-client'
import bodyParser = require('body-parser');
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.use(bodyParser.json());
app.use(HttpLoggerMiddleware({ prettyPrint: false}))
app.use('/metrics', async (req, res) => {
res.set('Content-Type', Prometheus.register.contentType)
const end = await Prometheus.register.metrics()
res.end(end)
})
await app.listen(3000);
}
bootstrap();
import { GrpcLoggerMiddleware } from '@treelab/logger-metrics-middleware';
// 在grpc Controller 上使用
@UseInterceptors(GrpcLoggerMiddleware)
@Controller()
export class GrpcController {
constructor(){}
}
FAQs
nest js logger-metrics-middleware
The npm package @treelab/logger-metrics-middleware receives a total of 1 weekly downloads. As such, @treelab/logger-metrics-middleware popularity was classified as not popular.
We found that @treelab/logger-metrics-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
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.