Documentation
    Preparing search index...

    Complete body parser configuration for all supported content types

    type BodyParserConfig = {
        allowedMethods: string[];
        json: BodyParserJSONConfig;
        form: BodyParserFormConfig;
        raw: BodyParserRawConfig;
        multipart: BodyParserMultipartConfig;
    }
    Index

    Properties

    allowedMethods: string[]

    HTTP methods that should have their bodies parsed

    Configuration for JSON body parsing

    Configuration for form data body parsing

    Configuration for raw body parsing

    Configuration for multipart body parsing