
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
nest-request-ip
Advanced tools
Nest Request IP is a convenient Nest.js module that allows you to effortlessly retrieve information from HTTP requests, including client IP addresses, user agents, browsers, and operating systems. With this module, you can enhance your Nest.js application
Nest Request IP is a convenient Nest.js module that allows you to effortlessly retrieve information from HTTP requests, including client IP addresses, user agents, browsers, and operating systems. With this module, you can enhance your Nest.js application's functionality by gaining insights into the characteristics of incoming requests.
city
, country
, region
, timezone
from IPnpm install nest-request-ip --save
app.module.ts
import { Module } from "@nestjs/common";
import { RequestIpModule } from "nest-request-ip";
import { AppController } from "./app.controller";
import { AppService } from "./app.service";
@Module({
imports: [
RequestIpModule.forRoot({
localIpAddress: "76.76.21.123", // this ip is used when the request is local
}),
],
controllers: [AppController],
})
export class AppModule {}
app.controller.ts
import { Controller, Get, Req } from "@nestjs/common";
import { Request } from "express";
import {
GetClientIp,
GetClientAgent,
GetClientBrowser,
GetClientSystem,
} from "nest-request-ip";
@Controller()
export class AppController {
@Get()
getHello(@GetClientIp() ip: ClientInfo) {
return ip;
}
@Get("agent")
getAgent(@GetClientAgent() agent: string) {
return agent;
}
@Get("browser")
getBrowser(@GetClientBrowser() browser: string) {
return browser;
}
@Get("system")
getSystem(@GetClientSystem() system: string) {
return system;
}
}
FAQs
Nest Request IP is a convenient Nest.js module that allows you to effortlessly retrieve information from HTTP requests, including client IP addresses, user agents, browsers, and operating systems. With this module, you can enhance your Nest.js application
The npm package nest-request-ip receives a total of 29 weekly downloads. As such, nest-request-ip popularity was classified as not popular.
We found that nest-request-ip 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.