http-method-enum

HTTP methods as a TypeScript enum.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
http-method-enum
1101.0.04 years ago4 years agoMinified + gzip package size for http-method-enum in KB

Readme

http-method-enum
HTTP methods as a TypeScript enum.
tslint: Slick code style: Prettier npm semantic-release License

Install

$ npm install http-method-enum

Usage

Node.js / CommonJS:
const { HTTPMethod } = require('http-method-enum')

ESNext / TypeScript:
import { StatusCode } from 'http-method-enum'

if (res.method = HTTPMethod.GET) {
  // ...
}

All current standard HTTP methods are available as follows:

- CONNECT = 'CONNECT' - DELETE = 'DELETE' - GET = 'GET' - HEAD = 'HEAD' - OPTIONS = 'OPTIONS' - PATCH = 'PATCH' - POST = 'POST' - PUT = 'PUT' - TRACE = 'TRACE'

Related

News and Updates

Follow @typeslick on Twitter for the latest updates and new project announcements.

Sponsors

Maintainers

License

MIT