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 🙏

© 2026 – Pkg Stats / Ryan Hefner

env-banner-node

v1.0.0

Published

A universal environment banner for Node.js web frameworks.

Readme

Environment Banner for Node.js (env-banner-node)

A single, portable Node.js utility to display an environment warning banner (e.g., "DEVELOPMENT", "STAGING") across any Connect/Express-style web framework. One source of truth, one-line usage per app.

This is the official Node.js port of the original env-banner-python utility, providing consistent behavior across your entire technology stack.

Why This Exists

This library is designed to be:

  • Portable: A single NPM package that works in any Node.js web project.
  • Bulletproof: Uses reliable server-side detection and sane defaults. It fails safe by showing a banner if the environment is unknown.
  • Thoughtless: Requires only a one-line integration for most major frameworks.
  • Framework-Agnostic: Works with Express, Connect, and any other middleware-compatible Node.js framework.
  • Maintainable: All banner logic, colors, and rules are in one place.

Repository Structure

env-banner-node/
├── lib/
│   ├── core.js         # Banner generation and styling logic
│   └── middleware.js   # Express/Connect middleware
├── test/               # Test files (not published to npm)
│   ├── express-app.js
│   ├── test-diagonal.html
│   └── README.md
├── LICENSE
├── package.json
└── README.md

Note: The test/ directory is excluded from npm packages via the files field in package.json.

Installation

Install the package from NPM (once published) or directly from the Git repository:

npm install git+[https://github.com/sagearbor/env-banner-node.git](https://github.com/sagearbor/env-banner-node.git)

How It Works

The utility provides a standard middleware function.

  1. Environment Classification: It determines the current environment by checking the APP_ENV environment variable first, then falling back to reliable server-side request details (host, path). It defaults to dev if uncertain.
  2. Middleware Injection: The middleware intercepts HTML responses. It buffers the response body, injects the banner HTML just before the closing </body> tag, updates the Content-Length header, and sends the modified response to the user. Non-HTML responses are ignored.

Configuration

The banner's behavior is controlled primarily by a single environment variable:

APP_ENV (or ENVBANNER_ENV)

Set this variable in your deployment environment (Docker, Kubernetes, etc.).

  • prod or production: No banner is shown.
  • staging, val, preprod: A yellow banner is shown.
  • dev, test, local: A red banner is shown.
  • If unset: A red banner is shown by default.

Usage

Require the library and add it as middleware to your application.

Express.js / Connect

const express = require('express');
const envBanner = require('env-banner-node'); // or require('./path/to/lib/middleware');

const app = express();

app.use(envBanner()); // <-- Add this line

app.get('/', (req, res) => {
  res.send('<html><head></head><body><h1>Hello World!</h1></body></html>');
});

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

Customization Options

The envBanner() middleware accepts an optional configuration object with the following properties:

| Option | Type | Default | Description | |--------|------|---------|-------------| | text | string | Auto-detected (e.g., "DEV", "STAGING") | Custom text to display in the banner | | background | string | Auto-detected (red for dev, amber for staging) | Custom background color (hex code) | | color | string | Auto-detected (white for dev, dark gray for staging) | Custom text color (hex code) | | position | string | 'bottom' | Banner position: 'top', 'bottom', 'top-left', 'top-right', 'bottom-left', 'bottom-right', 'diagonal' (or 'diagonal-bltr'), 'diagonal-tlbr' | | showHost | boolean | true | Whether to display the hostname and port (e.g., " • localhost:3000") | | opacity | number | 1.0 (bars/ribbons), 0.5 (diagonal) | Banner opacity from 0.0 (transparent) to 1.0 (fully opaque) | | envVarName | string | 'APP_ENV' | Primary environment variable name to check |

Examples

Custom Text Without Hostname

app.use(envBanner({
  text: "DON'T USE REAL DATA",
  showHost: false
}));
// Result: "DON'T USE REAL DATA" (no hostname/port shown)

Custom Text with Colors

app.use(envBanner({
  text: "QA Environment - Test Data Only",
  background: "#9333ea",  // purple
  color: "#ffffff",       // white
  position: "bottom"
}));
// Result: "QA Environment - Test Data Only • localhost:3000" at bottom

Corner Ribbon Positions

Corner positions display the banner as a diagonal ribbon in the specified corner:

// Top-right corner ribbon (default ribbon style)
app.use(envBanner({
  position: 'top-right',
  text: "STAGING"
}));

// Top-left corner ribbon
app.use(envBanner({
  position: 'top-left'
}));

// Bottom-right corner ribbon
app.use(envBanner({
  position: 'bottom-right'
}));

// Bottom-left corner ribbon
app.use(envBanner({
  position: 'bottom-left'
}));

Full Bar Positions

Full-width bar positions span the entire width of the page:

// Bottom bar (default)
app.use(envBanner());
// or explicitly:
app.use(envBanner({
  position: 'bottom'
}));

// Top bar
app.use(envBanner({
  position: 'top'
}));

Diagonal Banner

The diagonal position creates a thin diagonal stripe across the viewport, perfect for highly visible warnings without blocking content. The banner is click-through enabled (pointer-events: none).

Two diagonal directions are available:

// Default diagonal: bottom-left to top-right (/)
app.use(envBanner({
  position: 'diagonal',
  text: "DON'T USE REAL DATA"
}));
// or explicitly:
app.use(envBanner({
  position: 'diagonal-bltr',  // BLTR = Bottom-Left To Right
  text: "DON'T USE REAL DATA"
}));

// Alternative direction: top-left to bottom-right (\)
app.use(envBanner({
  position: 'diagonal-tlbr',  // TLBR = Top-Left To Bottom-Right
  text: "STAGING ENVIRONMENT"
}));

// Custom opacity diagonal
app.use(envBanner({
  position: 'diagonal',
  opacity: 0.3,  // 30% opaque (very subtle)
  text: "DEVELOPMENT ENVIRONMENT"
}));

// More visible diagonal
app.use(envBanner({
  position: 'diagonal',
  opacity: 0.7,  // 70% opaque
  background: '#ef4444',
  color: '#ffffff',
  text: "STAGING - TEST DATA ONLY",
  showHost: false
}));

Diagonal Positions:

  • 'diagonal' or 'diagonal-bltr': Bottom-left to top-right (/) - default diagonal direction
  • 'diagonal-tlbr': Top-left to bottom-right ()

Transparency for Other Positions

The opacity option works with all position styles:

// Semi-transparent top bar
app.use(envBanner({
  position: 'top',
  opacity: 0.8,
  text: "DEV ENVIRONMENT"
}));

// Semi-transparent corner ribbon
app.use(envBanner({
  position: 'top-right',
  opacity: 0.6,
  text: "STAGING"
}));