express-meta-guard
v1.0.5
Published
ExpressJS Middleware/Guard that provides input validation and OpenAPI documentation
Downloads
5
Readme
Express Meta Guard
Overview
Express is the most popular NodeJS framework for building APIs with good reason: it combines high performance, ease of use, and a large number of third-party contrib modules to create an ecosystem that makes it easy to quickly build sophisticated, high-performance APIs.
Unfortunately, its imperative style of declaring routes and handlers can make it more challenging to document those same APIs. Where some frameworks allow developers to specify metadata alongside API call handlers, Express has no built-in mechanism to support this. Although there have been some great solutions shared by the community to provide Swagger/OpenAPI documentation from Express APIs, they all have one or more compromises to be made:
- Generators that use comment blocks create messy routing files. OpenAPI is a very verbose spec, and documentation blocks can sometimes be 3-4x the length of the handler code.
- Comment blocks also offer no "code assistance" to the developer. It is very easy to make even simple typo-level mistakes that break your documentation, and developers must memorize all of the available options to specify.
- Generators that scan or observe the code itself are not sophisticated enough to capture all of the critical details from a modern code base, especially TypeScript interfaces and types, response models, and middleware processors guards.
- All of the current solutions fail to combine documentation with enforcement. It is too easy to make simple mistakes such as marking an input field as required but not fully enforcing it in the code itself. This can lead to bugs, security vulnerabilities, and other unexpected behavior.
- It is still up to developers to implement repetitive, "common sense" handlers, e.g. converting path and query parameters from strings to integers, and sanitizing data for database operations.
Features
Express Meta Guard takes a new approach to these options, making it easier to document ExpressJS APIs while also enforcing the rules that the documentation specifies.
This module is an ExpressJS middleware that provides input validation and sanitization, with the ability to export documentation from the guard's metadata. This allows operation names, inputs, and responses to be specified inline with route definitions, making it easy for developers to maintain as routes are created/enhanced.
app.get(
'/books',
MetaGuard({
operationId: 'getBooks',
description: 'Get a paginated list of all available books.',
parameters: {
page: {in: 'query', required: true, formatter: (val: any) => +val},
count: {in: 'query', default: 10, formatter: (val: any) => +val},
},
tags: ['Books'],
}),
booksController.getBooks,
);
Then, via Express Route Parser or other helpers, this module can generate OpenAPI-compatible documentation for an API. If you provide a folder of models, you can even reference those models in your documentation, which is particularly useful for return types! See below for information on how to do this.
Installation
Simply install this package in your project as a devDependency. Via NPM:
npm i -D express-meta-guard
or Yarn:
yarn add -D express-meta-guard
Usage
Usage is simple. When defining a route, simply add MetaGuard as a middleware. Most common OpenAPI flags are available, and have the same names:
import {MetaGuard} from 'express-meta-guard';
app.get(
'/books',
MetaGuard({
operationId: 'getBooks',
description: 'Get a paginated list of all available books.',
}),
(req, res) => {
res.json([{id: 1, title: 'To Kill a Mockingbird'}]);
},
);
Inputs may be formatted, which is especially useful for path and query params that always arrive as strings.
Formatters receive (value, req) as parameters. You can also have MetaGuard pass along the final list of
post-processed parameters (you will almost always want to do this when using formatters) with the annotateLocals
option, which should be a string key that will be set on res.locals
:
import {MetaGuard} from 'express-meta-guard';
app.get(
'/books',
MetaGuard({
operationId: 'getBooks',
annotateLocals: 'inputs',
parameters: {
page: {in: 'query', formatter: (val: any) => +val},
reserved: {in: 'query', formatter: (val: any) => val === 'true'},
},
}),
(req, res) => {
const {page, reserved} = res.locals.inputs;
const matchingBooks = AllBooks.filter((book) => book.reserved === reserved);
const results = matchingBooks.slice(page * 10, page * 10 + 10);
res.json(results);
},
);
Inputs may also be validated. Validators may be asynchronous, allowing them to perform cache (session) or database lookups. To report an error, validators may throw an exception, return a string error message, or return false.
Validators receive (value, req) as parameters, so they may check dependent variables.
import {MetaGuard} from 'express-meta-guard';
app.get(
'/books',
MetaGuard({
operationId: 'getBooks',
parameters: {
companyId: {
in: 'path',
validator: async (companyId: string) => {
const company = await Company.findOne({where: {id: companyId}});
if (!company) {
throw new Error('Invalid company ID');
}
},
},
companyType: {
in: 'path',
validator: (companyType: string) =>
['public', 'private'].includes(companyType) || 'companyType must be one of "public" or "private"',
},
showPublicFilings: {
in: 'query',
formatter: (val: any) => val === 'true',
validator: (val: boolean) => req.query.companyType === 'public',
},
},
}),
booksController.getBooks,
);
Note that validators run after formatters, so they should check the expected types, not the source types. Also,
they do not have access to the final, annotated list of inputs even if annotateLocals
is set. This is because
this module will terminate early if any violation is detected, avoiding unnecessary work in later validators.
Naturally, most projects will refactor commonly-used operators into reusable functions to keep the code clean and easy to scan/maintain:
import {MetaGuard} from 'express-meta-guard';
import {companyExists, companyTypeIsValid, stringToBool, companyTypePublic} from '../lib/inputHandlers';
app.get(
'/books',
MetaGuard({
operationId: 'getBooks',
parameters: {
companyId: {in: 'path', validator: companyExists},
companyType: {in: 'path', validator: companyTypeIsValid},
showPublicFilings: {in: 'query', formatter: stringToBool, validator: companyTypePublic},
},
}),
booksController.getBooks,
);
OpenAPI / Swagger
Most OpenAPI parameters are available to be set, all of which are optional:
import {MetaGuard} from 'express-meta-guard';
app.get(
'/books',
MetaGuard({
// The human-friendly operation name
operationId: 'getBooks',
// Explicitly specify the endpoint's path, see below
path: '/books',
// OpenAPI summary, description, and tags fields
summary: 'Get books.',
description: 'Get a paginated list of all available books.',
tags: ['Books'],
// If set to true, the endpoint will not be included in the generated OpenAPI documentation
hidden: false,
// List of accepted input parameters. Most OpenAPI options apply
parameters: {},
// Responses is not used by Express Meta Guard, but required by OpenAPI. A full OpenAPI definition may be
// included, or shorthand may be used to refer to simple schema types and arrays of types.
responses: {'200': '#/components/schemas/Book[]'},
}),
booksController.getBooks,
);
Note that when generating OpenAPI documentation via express-route-parser
, the path
parameter can normally be
automatically determined. However, ExpressJS supports complex routes with aliases, RegEx matching, and other
options that don't cleanly map to OpenAPI specifications. If you see odd paths emitted like
'/(?:^\\/templates\\/?(?=\\/|$)|^\\/documents\\/?(?=\\/|$))/i/list'
, you can provide the path
property to
explicitly set the path that will be shown in the documentation.
Some OpenAPI schema properties can be also used to simplify formatting and validation operations. Here, page will be both formatted and validated as an integer:
import {MetaGuard} from 'express-meta-guard';
app.get(
'/books',
MetaGuard({
operationId: 'getBooks',
parameters: {
page: {in: 'query', schema: {type: 'integer'}},
},
}),
booksController.getBooks,
);
Bear in mind that in Javascript, not all OpenAPI types have as much meaning. For example, all floats
are 64-bit in JS, so there is no differentiation between 'float' and 'double'. Currently, only string
,
integer
, number
, and boolean
will be enforced.
Currently the supported schema-based conversions and validations are:
- Converting to string, integer, number, and boolean
- For integers and numbers, checking that the input was a valid number
- For booleans, supporting string values of
1
,True
,TRUE
, and booleantrue
as inputs - For integers and numbers, the
minimum
,maximum
,exclusiveMinimum
,exclusiveMaximum
value properties - For strings, the
minLength
andmaxLength
properties - For integers, numbers, and strings, the
enum
property
Responses
Responses are not enforced, but types are still provided to encourage OpenAPI-compatible documentation practices. Although you can specify the full OpenAPI-compatible response objects, these tend to be very long because OpenAPI supports XML and other encodings. Since ExpressJS APIs are almost always JSON-oriented, types are provided to allow shorthand for the most common operations. For example:
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Book"
}
}
}
}
}
}
can be reduced to:
"responses": {"200": "#/components/schemas/Book[]"}
Note the use of []
at the end of the ref to generate an array-type reference.
The documentation generation script can easily generate the "standard 200-OK" response documentation block from this shorthand. Since most APIs also have standard responses for "Not Found", "Illegal Input", and other server errors, these typically just become boilerplate that the documentation generator can append as well.
Generating Documentation
Producing documentation in OpenAPI, Markdown, or other formats is frequently project-specific. One project may have simple models mapped to schema-less backends, while another might use an ORM capable of emitting models directly from table definitions.
Rather than trying to cover every option here, an example project is provided in the example/
directory with a
simple approach. In that project, a generate-docs.ts
script illustrates one easy way to generate OpenAPI
documentation, and you may customize it from there.
Exceptions / Limitations
A major goal for this module is simplicity and brevity - trying to avoid cases where lines of documentation exceed lines of code. A few exceptions were made to OpenAPI standards to enable this. In particular:
- Parameters may have a location of
body
, so it is not necessary to separately definerequestBody
. - Responses may be written in
'code': '#ref'
shorthand instead of the verbosecode...> content...> type...> schema...>
structure. - Ref arrays may be written in
#/components/schemas/Book[]
style instead ofschema...> type: array...> items...> ref
.
Additionally, there is currently no support for some API-wide OpenAPI settings such as securitySchemes
. Developers
can customize the generator to add these.