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

cloudmask

v1.1.2

Published

A Cloudflare error page clone for React apps

Readme

Cloudmask

Cloudmask is a React library that provides a professional Cloudflare-style error page for your application when runtime crashes occur. It serves as a robust Error Boundary that catches component errors and displays a user-friendly interface instead of a blank screen or raw error logs.

Demo

Production Mode (isDev={false})

Clean error page for end users - hides technical details while maintaining a professional appearance.

Production Mode

Development Mode (isDev={true})

Detailed error information with expandable stack trace - includes a collapsible panel with smooth slide animation for debugging.

Development Mode


📦 Repository: github.com/NguyenDuc2309/cloudmask

Project Goals

  • Runtime Crash Handling: Automatically catches React component errors via a standardized Error Boundary.
  • Professional UI: Replicates the clean and recognizable Cloudflare error page design, including status codes, Ray IDs, and timestamps.
  • Automatic Error Detection: Intelligently analyzes error objects to determine appropriate HTTP status codes (e.g., 400 for logic errors, 502 for runtime crashes).

Installation

npm install cloudmask

Usage

Wrap your application (or specific parts of it) with CloudmaskErrorBoundary.

Import Style

Ensure the library's CSS is imported in your entry file (e.g., main.jsx or index.jsx):

import "cloudmask/style.css";

Wrap Application

import React from "react";
import { CloudmaskErrorBoundary } from "cloudmask";
import App from "./App";

const Root = () => (
  <CloudmaskErrorBoundary serviceName="My App">
    <App />
  </CloudmaskErrorBoundary>
);

export default Root;

When any component within the boundary crashes, Cloudmask will intercept the error and display the error page.

Props

The CloudmaskErrorBoundary component accepts the following optional prop:

| Prop | Type | Default | Description | | ------------- | --------- | -------------- | -------------------------------------------------- | | serviceName | string | "Cloudflare" | The name of the service displayed in the error UI. | | isDev | Boolean | "false" | Turn on to show developer error. |

Automatic Error Detection Logic

Cloudmask analyzes the captured Error object to categorize the failure:

400 Bad Request

Assigned to errors likely caused by development logic issues:

  • TypeError (e.g., accessing a property of undefined)
  • ReferenceError (e.g., using an undeclared variable)
  • SyntaxError

502 Bad Gateway

Assigned to generic runtime crashes:

  • new Error('Message')
  • General unhandled exceptions

500 Internal Server Error

Used as a fallback for all other error types.


Cloudmask - enhance your application's resilience with professional error handling.