cdimascio / express-openapi-validator

🦋 Auto-validates api requests, responses, and securities using ExpressJS and an OpenAPI 3.x specification
MIT License
920 stars 211 forks source link

Looking for blogs and articles that you've written about express-openapi-validator. Post links here #316

Open cdimascio opened 4 years ago

cdimascio commented 4 years ago
davesag commented 4 years ago

Hey - nice work. It's not a blog but I have just updated my api-server-boilerplate project to include your library. (see PR)

van001 commented 4 years ago

Nice work guys. I am trying to use your library for a universal gateway that I am building, which is going to support any protocol (REST, GraphQL, Message Q message etc). I was wondering if there is a way that I can use your library to just validate the open-spec (if it's correct), without worrying about express.

cdimascio commented 4 years ago

@van001 We validate the IDL on load before registering middleware. For that initial correctness validation, we use swagger-parser. You may want to look at that.