npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hapi-geo-locate

v4.1.1

Published

Provide IP geo location for incoming requests in hapi

Downloads

494

Readme



Introduction

A hapi plugin to geo locate requests by IP and provide request.location in your route handlers. The plugin uses ipinfo.io for the IP geo location.

Requirements

hapi v19 (or later) and Node.js v12 (or newer)

This plugin requires hapi v19 (or later) and Node.js v12 or newer.

Compatibility

| Major Release | hapi.js version | Node.js version | | --- | --- | --- | | v4 | >=17 hapi | >=12 | | v3 | >=17 hapi | >=8 | | v2 | <=16 hapi | >=8 |

Installation

Add hapi-geo-locate as a dependency to your project:

npm i hapi-geo-locate

Using hapi v17 or v18?

Use the 3.x release line:

npm i hapi-geo-locate@3

Do you use hapi v16 (or lower)?

Use the 2.x release of hapi-geo-locate with hapi v16 support. Later versions are only compatible with hapi v17 and v18.

npm i hapi-geo-locate@2

Usage

The most straight forward way to register the hapi-geo-locate plugin:

await server.register({
    plugin: require('hapi-geo-locate')
})

// went smooth like dark chocolate :)

// Within your route handler functions, you can access the location like this
server.route({
    method: 'GET',
    path: '/',
    handler: (request, h) => {
        const location = request.location

        // use client location

        return location
    }
})

Plugin Registration Options

The following plugin options allow you to customize the default behavior of hapi-geo-locate:

  • enabledByDefault: (boolean), default: true — by default, the plugin geo locates the request by IP on every request
  • authToken: (string), no default — the API token to authenticate requests against the IPinfo API
await server.register({
  plugin: require('hapi-geo-locate'),
  options: {
    enabledByDefault: false
    authToken: 'your-ipinfo-api-token'
  }
})

// Within your route handler functions, you can access the location like this
server.route({
  method: 'GET',
  path: '/',
  handler: (request, h) => {
    const location = request.location // will be undefined

    return h.response(location)
  }
})

Route Handler Options

The following plugin options on individual route handlers allow you to customize the behavior of hapi-geo-locate:

  • enabled: (boolean) — tells the plugin to enable (true) or disable (false) geo location for the request by IP
  • fakeIP: (string) — tells the plugin to use the defined IP address to geo locate the request (by this IP)

The plugin configuration can be customized for single routes using the hapi-geo-locate key:

server.register({
  plugin: require('hapi-geo-locate') // enabled by default
})

// Within your route handler functions, you can access the location like this
server.route({
  method: 'GET',
  path: '/',
  handler: (request, h) => {
    const location = request.location
    // use the location

    return location
  },
  config: {
    plugins: {
      'hapi-geo-locate': {
        enabled: true,
        fakeIP: '8.8.8.8'
      }
    }
  }
})

Supported Proxies and Proxy Headers

hapi-geo-locate supports all proxies that request-ip does:

  • X-Client-IP
  • X-Forwarded-For, picking the first, client IP if the request went through multiple proxies.
  • X-Forwarded, Forwarded-For and Forwarded as variations of X-Forwarded-For
  • CF-Connecting-IP
  • True-Client-Ip
  • X-Real-IP
  • X-Cluster-Client-IP
  • and all the request.[connection|socket|info].remoteAddress variations.

If the IP address cannot be found, null is returned.

Running your application behind a (reverse) proxy like nginx, the client’s IP address gets reset to localhost. You can grab the actual request IP to your app using an HTTP header.

hapi-geo-locate uses the request-ip package to determine the external IP address. This package supports all common HTTP headers and ways to get the request’s IP. Awesome!

You should be safe in any way :)

Feature Requests

Do you miss a feature? Please don’t hesitate to create an issue with a short description of your desired addition to this plugin.

Links & Resources

Contributing

  1. Create a fork
  2. Create your feature branch: git checkout -b my-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request 🚀

License

MIT © Future Studio


futurestud.io  ·  GitHub @futurestudio  ·  Twitter @futurestud_io