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

@ebec/http

v4.0.0

Published

43 pre-built HTTP error classes (4xx/5xx) with status codes, status messages, and duck-typed type guards.

Readme

@ebec/http 🌐

npm version main codecov

HTTP error classes for TypeScript, extending @ebec/core. Provides 43 pre-built error classes for HTTP 4xx and 5xx status codes with duck-typed type guards.

Table of Contents

Installation

npm install @ebec/http

This installs @ebec/core as a dependency automatically.

Quick Start

import { NotFoundError, InternalServerError } from '@ebec/http';

// String message
const error = new NotFoundError('user not found');
console.log(error.status);        // 404
console.log(error.code);          // "NOT_FOUND"
console.log(error.message);       // "user not found"

// Options input
const error = new InternalServerError({
    message: 'database connection lost',
    code: 'DB_CONN_LOST',
});
console.log(error.status); // 500
console.log(error.code);   // "DB_CONN_LOST"

Use in an Express-style error handler:

import { isHTTPError } from '@ebec/http';

app.use((err, req, res, next) => {
    if (isHTTPError(err)) {
        res.status(err.status).json(err.toJSON());
    } else {
        res.status(500).json({ message: 'Internal Server Error' });
    }
});

Custom Subclasses

Extend any error class with your own defaults:

import { NotFoundError } from '@ebec/http';

class UserNotFoundError extends NotFoundError {
    constructor(userId: number) {
        super({
            message: `User ${userId} not found`,
            code: 'USER_NOT_FOUND',
        });
    }
}

throw new UserNotFoundError(42);
// status: 404, code: "USER_NOT_FOUND", message: "User 42 not found"

Type Guards

All type guards use duck typing and return interface types (IHTTPError, IClientError, IServerError). They work with any object that has the right shape, not just instanceof checks.

import {
    isHTTPError,
    isClientError,
    isServerError,
} from '@ebec/http';

if (isHTTPError(error)) {
    // error has status (400-599)
    console.log(error.status);
}

if (isClientError(error)) {
    // error has status 400-499
}

if (isServerError(error)) {
    // error has status 500-599
}

Accessing Core Exports

Everything from @ebec/core is available via the ./core subpath:

import { BaseError, isBaseError } from '@ebec/http/core';

Error Classes

Base

| Class | Description | |-------|-------------| | HTTPError | Base HTTP error, extends BaseError. Defaults to status 500. | | ClientError | Base for 4xx errors, extends HTTPError. | | ServerError | Base for 5xx errors, extends HTTPError. |

Client (4xx)

| Status | Class | Code | |--------|-------|------| | 400 | BadRequestError | BAD_REQUEST | | 401 | UnauthorizedError | UNAUTHORIZED | | 403 | ForbiddenError | FORBIDDEN | | 404 | NotFoundError | NOT_FOUND | | 405 | MethodNotAllowedError | METHOD_NOT_ALLOWED | | 406 | NotAcceptableError | NOT_ACCEPTABLE | | 407 | ProxyAuthenticationRequiredError | PROXY_AUTHENTICATION_REQUIRED | | 408 | RequestTimeoutError | REQUEST_TIMEOUT | | 409 | ConflictError | CONFLICT | | 410 | GoneError | GONE | | 411 | LengthRequiredError | LENGTH_REQUIRED | | 412 | PreconditionFailedError | PRECONDITION_FAILED | | 413 | RequestEntityTooLargeError | REQUEST_ENTITY_TOO_LARGE | | 414 | RequestURITooLongError | REQUEST_URI_TOO_LONG | | 415 | UnsupportedMediaTypeError | UNSUPPORTED_MEDIA_TYPE | | 416 | RequestedRangeNotSatisfiableError | REQUESTED_RANGE_NOT_SATISFIABLE | | 417 | ExpectationFailedError | EXPECTATION_FAILED | | 418 | ImATeapotError | IM_A_TEAPOT | | 420 | EnhanceYourCalmError | ENHANCE_YOUR_CALM | | 422 | UnprocessableEntityError | UNPROCESSABLE_ENTITY | | 423 | LockedError | LOCKED | | 424 | FailedDependencyError | FAILED_DEPENDENCY | | 425 | UnorderedCollectionError | UNORDERED_COLLECTION | | 426 | UpgradeRequiredError | UPGRADE_REQUIRED | | 428 | PreconditionRequiredError | PRECONDITION_REQUIRED | | 429 | TooManyRequestsError | TOO_MANY_REQUESTS | | 431 | RequestHeaderFieldsTooLargeError | REQUEST_HEADER_FIELDS_TOO_LARGE | | 444 | NoResponseError | NO_RESPONSE | | 449 | RetryWithError | RETRY_WITH | | 450 | BlockedByWindowsParentalControlsError | BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS | | 499 | ClientClosedRequestError | CLIENT_CLOSED_REQUEST |

Server (5xx)

| Status | Class | Code | |--------|-------|------| | 500 | InternalServerError | INTERNAL_SERVER_ERROR | | 501 | NotImplementedError | NOT_IMPLEMENTED | | 502 | BadGatewayError | BAD_GATEWAY | | 503 | ServiceUnavailableError | SERVICE_UNAVAILABLE | | 504 | GatewayTimeoutError | GATEWAY_TIMEOUT | | 505 | HTTPVersionNotSupportedError | HTTP_VERSION_NOT_SUPPORTED | | 506 | VariantAlsoNegotiatesError | VARIANT_ALSO_NEGOTIATES | | 507 | InsufficientStorageError | INSUFFICIENT_STORAGE | | 508 | LoopDetectedError | LOOP_DETECTED | | 509 | BandwidthLimitExceededError | BANDWIDTH_LIMIT_EXCEEDED | | 510 | NotExtendedError | NOT_EXTENDED | | 511 | NetworkAuthenticationRequiredError | NETWORK_AUTHENTICATION_REQUIRED |

API Reference

HTTPError

class HTTPError extends BaseError {
    readonly status: number;           // defaults to 500
    readonly redirectURL?: string;

    get statusCode(): number;          // @deprecated — alias for `status`

    constructor(input?: string | ErrorOptions);
}

ErrorOptions

Extends core ErrorOptions with HTTP-specific fields:

| Property | Type | Description | |----------|------|-------------| | status | number \| string | HTTP status code (400-599). Invalid values default to 500. | | statusCode | number \| string | Deprecated. Alias for status. | | redirectURL | string | Redirect URL for 3xx-style responses. |

Plus all fields from @ebec/core ErrorOptions.

Type Guards

| Function | Returns | Checks | |----------|---------|--------| | isHTTPError(input) | input is IHTTPError | status 400-599, passes isBaseError | | isClientError(input) | input is IClientError | isHTTPError + status 400-499 | | isServerError(input) | input is IServerError | isHTTPError + status 500-599 | | isErrorOptions(input) | input is ErrorOptions | Validates HTTP options shape |

Utilities

| Function | Description | |----------|-------------| | getStatusText(statusCode) | Returns the reason phrase for a given status code, or undefined if not found | | sanitizeStatusCode(input) | Parses and validates (400-599), defaults to 500 | | STATUS_TEXTS | Map of status codes to reason phrases (e.g. 400 → "Bad Request") |

License

Made with 💚

Published under MIT License.