![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
res-swag
takes the response from a request to an API and validates it against a given Swagger/OpenAPI definition
Currently supports Swagger 2 and OpenAPI 3
import { Swag } from 'res-swag';
const jsonPointers = {
url: '/req/url',
method: '/req/method',
status: '/status',
contentType: '/headers/content-type',
responseBody: '/body',
};
const swag = new Swag(jsonPointers);
swag.ajv.addFormat('int32', {
type: 'number',
validate: (n) => Math.abs(n) < Math.pow(2, 31),
});
swag.validate(definition, response, options);
The jsonPointers
object lets the validator know where to find the url, method, status and response body to the response of the API request.
E.g. if the response from has the following shape:
interface Response {
req: {
url: string,
method: string,
},
status: number,
body,
}
then the jsonPointers
object should look like:
const jsonPointers = {
url: '/req/url',
method: '/req/method',
status: '/status',
contentType: '/headers/content-type',
responseBody: '/body',
};
res-swag
uses ajv for validation. To add formats etc, you can access ajv like so
swag.ajv.addFormat('int32', {
type: 'number',
validate: (n) => Math.abs(n) < Math.pow(2, 31),
});
The validation function swag.validate
takes the following arguments:
string | any
- the Swagger or OpenAPI definition for the API that was called in the HTTP request, this can be the raw (string) YAML or parsed YAML (json object)any
- the response object from the API requestPartial<SwagOptions>
(optional) - this will override the defaults:{
banUnknownProperties: true,
implicitNullableProperties: true,
implicitNullableObjects: true,
ignoreUnknownServer: true,
}
FAQs
validate json response with parsed swagger
The npm package res-swag receives a total of 168 weekly downloads. As such, res-swag popularity was classified as not popular.
We found that res-swag demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.