Skip to content

Commit

Permalink
doc: brief summary
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Dec 20, 2020
1 parent 1592223 commit 60f2cf4
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions assets/README.md
@@ -0,0 +1,55 @@
# 馃 express-openapi-validator

**An OpenApi validator for ExpressJS** that automatically validates **API** _**requests**_ and _**responses**_ using an **OpenAPI 3** specification.

[馃express-openapi-validator](https://github.com/cdimascio/express-openapi-validator) is an unopinionated library that integrates with new and existing API applications. express-openapi-validator lets you write code the way you want; it does not impose any coding convention or project layout. Simply, install the validator onto your express app, point it to your OpenAPI 3 specification, then define and implement routes the way you prefer. See an [example](#example-express-api-server).

**Features:**

- 鉁旓笍 request validation
- 鉁旓笍 response validation (json only)
- 馃懏 security validation / custom security functions
- 馃懡 3rd party / custom formats
- 馃У optionally auto-map OpenAPI endpoints to Express handler functions
- 鉁傦笍 **\$ref** support; split specs over multiple files
- 馃巿 file upload

## Install

```shell
npm install express-openapi-validator
```

## Usage

1. Require/import the openapi validator

```javascript
const OpenApiValidator = require('express-openapi-validator');
```

2. Install the middleware

```javascript
app.use(
OpenApiValidator.middleware({
apiSpec: './openapi.yaml',
validateRequests: true, // (default)
validateResponses: true, // false by default
}),
);
```

3. Register an error handler

```javascript
app.use((err, req, res, next) => {
// format error
res.status(err.status || 500).json({
message: err.message,
errors: err.errors,
});
});
```

_**Important:** Ensure express is configured with all relevant body parsers. Body parser middleware functions must be specified prior to any validated routes. See an [example](#example-express-api-server)_.

0 comments on commit 60f2cf4

Please sign in to comment.