Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 595 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 595 Bytes

@xpring-eng/http-status

NPM version badge

A TypeScript enum for HTTP status codes.

Usage

This enum was designed to remove "magic numbers" of HTTP status codes from our codebases. Instead, you can access a human-readable alias for any numeric HTTP status code using HttpStatus.Status.

import HttpStatus from '@xpring-eng/http-status'

console.log(HttpStatus.NotFound) // Logs 404

Status Codes

All official HTTP status codes are included, as well as popular status codes used by NGINX, Microsoft, Twitter, etc.