Skip to content
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (32 loc) · 1.14 KB

README.md

File metadata and controls

39 lines (32 loc) · 1.14 KB

koa http status

CircleCI

Always response with status code 200 but set real http status in x-http-status header. It helps koa works in some strict environment that does not allow http status other than 200.

Usage

const Koa = require('koa')
const httpStatusHeader = require('@tng/koa-http-status-header')
const app = new Koa()
app.use(httpStatusHeader())
// ...

If response contains error. You will get resp with status code 200 like below.

> GET /some-wrong-request HTTP/1.1
> Host: localhost
> User-Agent: curl/7.54.0
> Accept: */*

< HTTP/1.1 200 OK
(notice the line below)
< x-http-status: 400
< Content-Length: 30
< Content-Type: application/json
...

API

setHttpStatusHeader(options: StatusHeaderOptions = {}): Koa.Middleware return Koa.Middleware to set response a header represent http status code.

  • options: Object
    • headerName: String (Optional) a specific name for store http status code in response header. Default is x-http-status