New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

feathers-express-ip

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feathers-express-ip

Expose client IP address to your Feathers application

  • 1.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
296
decreased by-20%
Maintainers
1
Weekly downloads
 
Created
Source

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;

Keywords

FAQs

Package last updated on 16 Oct 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc