Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

express-putin

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-putin

Express middleware to reject requests from all Russian IPs

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
2
Created
Source

express-putin

Express middleware to reject requests from all Russian IPs.

Version License Node version Dependencies Build Test

Table of contents:

  • Usage
  • FAQ

Usage

Basic

import express from 'express';
import putin from 'express-putin';

const app = express();

app.use(putin());

Customize response body and/or status code

import express from 'express';
import putin from 'express-putin';

const HTTP_I_AM_A_TEAPOT = 418;

const app = express();

app.use(putin({
  body: 'Russia, please stop the war!',
  status: HTTP_I_AM_A_TEAPOT,
}));

FAQ

Using behind a reverse proxy

In order to retrieve a client IP address we use request-ip library. Please check its documentation and make sure that your reverse proxy passes at least one of required headers containing client's IP address.

Why did you name a package after a war criminal?

So that people never forget who is responsible for all this.

And because it's way more catchy than express-stop-russian-invasion-on-ukraine.

Other open-source projects to help Ukraine: https://github.com/petrussola/help-ukraine-open-source

Keywords

express

FAQs

Package last updated on 08 Mar 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