sway-connect icon indicating copy to clipboard operation
sway-connect copied to clipboard

Connect compatible Swagger integration middleware using the sway API.

Results 7 sway-connect issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to figure out what to use for swagger middleware... what a minefield! Why is swagger-express-mw so much bigger than swagger-tools? Is the sway based middleware still active?...

The [swagger-validator middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-validator) was probably the most useful middleware in swagger-tools. This middleware would do request validation based on your Swagger document, as well as response validation if...

With Sway, the structure of `req.sway` will likely be much simpler than in swagger-tools. As of right now, this is what I've implemented: - `api`: This is the `SwaggerApi` object...

The [swagger-router middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-router) was really useful for spinning up a server and prototyping an API. Not only that but this middleware also handled the mocking functionality of swagger-tools'...

The [swagger-metadata middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-metadata) was the entry point to Swagger integrations using swagger-tools. The reason it is its own middleware is because there is a lot going implemented in...

The [swagger-security middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-security) was originally created to drive [a127](https://github.com/apigee-127/a127) but the idea was simple enough: allow the API author to register security handlers that would be consulted based...

The [swagger-router middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-router) not only did routing but it also is where the mocking support in swagger-tools was written. The original idea behind this decision was this: If...