Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Official Node ExpressJS client library for IPinfo API (IP geolocation and other types of IP data)

License

NotificationsYou must be signed in to change notification settings

ipinfo/node-express

Repository files navigation

IPinfo IPinfo Node.js Express Client Library

This is the official Node.js Express client library for theIPinfo.io IP address API, allowing you to look up your own IP address, or get any of the following details for an IP:

  • IP to geolocation (city, region, country, postal code, latitude, and longitude)
  • IP to ASN (ISP or network operator, associated domain name, and type, such as business, hosting, or company)
  • IP to Company (the name and domain of the business that uses the IP address)
  • IP to Carrier (the name of the mobile carrier and MNC and MCC for that carrier if the IP is used exclusively for mobile traffic)

Check all the data we have for your IP addresshere.

Getting Started

You'll need an IPinfo API access token, which you can get by signing up for a free account athttps://ipinfo.io/signup.

The free plan is limited to 50,000 requests per month, and doesn't include some of the data fields such as IP type and company data. To enable all the data fields and additional request volumes seehttps://ipinfo.io/pricing

The library also supports the Lite API, see theLite API section for more info.

Installation

npm

npm install ipinfo-express

yarn

yarn add ipinfo-express

Usage

The following is the interface of the middleware function.

Thetoken is the string token you get when registered with IPinfo.

Thecache key is the same as that described inhttps://github.com/ipinfo/node#caching.

Thetimeout key is the same as that described inhttps://github.com/ipinfo/node#timeouts.

TheipSelector is the function that returns the selected IP.

ipinfo({token:"<token>",cache:<cache_class>,    timeout: 5000,    ipSelector: null});

Full Example

The following is a full example of using the middleware function.

constexpress=require('express')constipinfo=require('ipinfo-express')constapp=express()app.use(ipinfo({token:"token",cache:null,timeout:5000,ipSelector:null}))app.get('/',function(req,res){res.send(req.ipinfo)})app.listen(3000,()=>{console.log(`Server is running`)})

IP Selection Mechanism

By default, the IP from the incoming request object is used.

Since the desired IP by your system may be in other locations, the IP selection mechanism is configurable and some alternative built-in options are available.

Using built-in IP selectors

  • Default IP Selector
  • Originating IP Selector
Default IP selector

AdefaultIPSelector function is used by default if no IP selection method is provided. It returns the default IP from the incoming request object of Express.

This selector can be set explicitly by setting theipSelector while setting the middleware function.

constipinfo=require('ipinfo-express')const{ defaultIPSelector}=require('ipinfo-express')constapp=express()app.use(ipinfo({token:"token",cache:null,timeout:5000,ipSelector:defaultIPSelector}))
Originating IP selector

AoriginatingIPSelector selects an IP address by trying to extract it from theX-Forwarded-For header. This is not always the most reliable unless your proxy setup allows you to trust it. It will default to the source IP on the request if the header doesn't exist.

This selector can be set by setting theipSelector while setting the middleware function.

constipinfo=require('ipinfo-express')const{ originatingIPSelector}=require('ipinfo-express')constapp=express()app.use(ipinfo({token:"token",cache:null,timeout:5000,ipSelector:originatingIPSelector}))

Using a custom IP selector

In case a custom IP selector is required, you may set your custom function toipSelector. Your custom function should takereq as an argument and return an IP instring format.

For example:

constipinfo=require('ipinfo-express')constapp=express()app.use(ipinfo({token:"token",cache:null,timeout:5000,ipSelector:(req)=>{ip=""// update ip according to your logic and return the selected IPreturnip}}))

Lite API

The library gives the possibility to use theLite API too, authentication with your token is still required.

The IP details returned are slightly different from the Core API middleware, though the arguments are identical.

const{ ipinfoLite}=require('ipinfo-express')ipinfoLite({token:"<token>",cache:<cache_class>,timeout:5000,ipSelector:null});

Other Libraries

There are official IPinfo client libraries available for many languages including PHP, Go, Java, Ruby, and many popular frameworks such as Django, Rails, and Laravel. There are also many third-party libraries and integrations available for our API.

About IPinfo

Founded in 2013, IPinfo prides itself on being the most reliable, accurate, and in-depth source of IP address data available anywhere. We process terabytes of data to produce our custom IP geolocation, company, carrier, VPN detection, hosted domains, and IP type data sets. Our API handles over 20 billion requests a month for 100,000 businesses and developers.

image

About

Official Node ExpressJS client library for IPinfo API (IP geolocation and other types of IP data)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors9


[8]ページ先頭

©2009-2025 Movatter.jp