request-ip 1.2.0
Install from the command line:
Learn more about npm packages
$ npm install @supercharge/request-ip@1.2.0
Install via package.json:
"@supercharge/request-ip": "1.2.0"
About this version
Retrieve a request’s IP address
Installation · Usage · Detecting the IP Address
Follow @marcuspoehls and @superchargejs for updates!
The @supercharge/request-ip
package provides a function to retrieve a request’s IP address.
npm i @supercharge/request-ip
const RequestIp = require('@supercharge/request-ip')
const ip = RequestIp.getClientIp(request)
// for example '213.211.254.97' as an IP v4 address
// or '2001:0db8:85a3:0000:0000:8a2e:0370:7334' as an IP v6 address
// or 'undefined' if no IP address is available on the given request
Depending on your used web framework, you may use it in a middleware or route handler:
simple Express example
const { getClientIp } = require('@supercharge/request-ip')
const expressMiddleware = function (req, res, next) {
req.ip = getClientIp(req)
next()
}
simple hapi route handler example:
const Hapi = require('@hapi/hapi')
const { getClientIp } = require('@supercharge/request-ip')
const server = new Hapi.Server({
host: 'localhost'
})
server.route({
method: 'GET',
path: '/login',
handler: (request, h) => {
const ip = getClientIp(request)
return h.response(ip)
}
})
The client’s IP address may be stored in different locations of the request instance varying between services.
Here’s the order of locations in which the packages searches for the requesting IP address:
- Checks HTTP request headers
-
x-forwarded-for
: this header may contain multiple IP address for (client/proxies/hops). This package extracts and returns the first IP address. -
x-forwarded
,forwarded
,forwarded-for
as variants fromx-forwarded-for
possibly configured by proxies -
x-client-ip
possibly configured by nginx -
x-real-ip
possibly configured in nginx -
cf-connecting-ip
from Cloudflare -
fastly-client-ip
from Fastly and Firebase -
true-client-ip
from Akamai and Cloudflare -
x-cluster-client-ip
from Rackspace
-
- Checks the HTTP connection in
request.connection
andrequest.connection.socket
- Checks the HTTP socket in
request.socket
- Checks the HTTP info in
request.info
- Checks the raw HTTP request instance in
request.raw
- Checks the request context used by AWS API Gateway/Lambda in
request.requestContext
A huge thank you to Petar Bojinov for his request-ip package. I was using Petar’s package for two years in my hapi-rate-limitor plugin. It seems Petar is busy with other work and I felt the need to create my own package providing the functionality to retrieve a request’s IP address.
Do you miss a way to find the request’s IP? We very much appreciate your contribution! Please send in a pull request 😊
- Create a fork
- Create your feature branch:
git checkout -b my-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request 🚀
MIT © Supercharge
superchargejs.com · GitHub @supercharge · Twitter @superchargejs
Details
- request-ip
- supercharge
- over 2 years ago
- MIT
- 10 dependencies
Assets
- request-ip-1.2.0-npm.tgz
Download activity
- Total downloads 8
- Last 30 days 0
- Last week 0
- Today 0