Git Product home page Git Product logo

help-header's Introduction

help-header

Help-header is an express middleware module that adds Link headers to responses matching configured status codes. It is useful for linking error responses to your documentation to aid your API consumers in diagnosing errors. For example:

$ curl -i https://api.example.com/authorized_resource
HTTP/2 401
Content-Type: application/json; charset=utf-8
...
Link: <https://example.com/docs/authorization>; rel="help"
...

Installation

The package (with types) is available on npm. Install with npm install:

$ npm install help-header

Usage

See express documentation for how to install middleware.

Configuration

A configuration object must be provided which tells help-header what status codes to match and what URLs to link to. URLs can be linked by any combination of status family and code. When processing a response, help-header first tries to match by status code, then by family. So for example, to link all 4XX response to general documentation and 403 status codes specifically to your authorization documentation, you may use something like:

const express = require('express');
const helpHeader = require('help-header').helpHeader;

const app = express();
app.use(
  helpHeader({
    401: "http://example.com/docs/authorization",
    clientError: "http://example.com/docs",
  })
);

The keys in the config object must be a number or one of:

  • informational
  • successful
  • redirection
  • clientError
  • serverError

The values must be strings encoding valid URLs or URL objects.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.