feathers-express-ip
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Expose requester's IP address to your Feathers services

With feathers-express-ip you can make your own solution for:

  • Rate limiting per IP address
  • Tracing the request by IP

Installation

npm install feathers-express-ip --save
yarn add feathers-express-ip

Example usage

Import package

// Typescript
import { feathersIp, feathersIpSocketIO } from 'feathers-express-ip';

// Javascript
const { feathersIp, feathersIpSocketIO } = require('feathers-express-ip');

For working with socket connections:

// Replace following line in src/app.ts:
app.configure(socketio());

// With following code:
app.configure(socketio(function (io) {
  feathersIpSocketIO(io, 'ip');
}));

For working with standard HTTP requests:

// After following line in src/app.ts:
app.configure(express.rest());

// Add following line:
app.use(feathersIp('ip'));

Read provided IP address in Feathers hook:

(context: HookContext) => {
  console.log(context.params.ip);
}

Using with reverse proxy

Reverse proxies not only hide IP address of your app from the user, they also hide the user's IP address from the app. If you want to get user's IP address while using reverse proxy such as Nginx, you will need configure your Nginx server accordingly.

Read explanation on Nginx website

In short, you can add following code in your Nginx config to set the headers:

proxy_pass_header  Set-Cookie;

proxy_set_header   Host               $host;
proxy_set_header   X-Real-IP          $remote_addr;
proxy_set_header   X-Forwarded-Proto  $scheme;
proxy_set_header   X-Forwarded-For    $proxy_add_x_forwarded_for;

Package Sidebar

Install

npm i feathers-express-ip

Weekly Downloads

266

Version

1.0.5

License

MIT

Unpacked Size

11.9 kB

Total Files

7

Last publish

Collaborators

  • digitalcortex