1.0.0 • Published 4 years ago

@xpring-eng/http-status v1.0.0

Weekly downloads
25
License
ISC
Repository
github
Last release
4 years ago

@xpring-eng/http-status

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.