Package Exports
- express-swagger-explorer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (express-swagger-explorer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
express-swagger-explorer
Install
npm i --save express-swagger-explorer
Usage
const app = request('express')();
const swaggerUI = require('express-swagger-explorer')();
app.use('/api-documentation', swaggerUI);
app.listen(8080)
Now you have a nice Swagger UI API explorer:
http://localhost:8080/api-documentation
Note: Swagger UI expects a Swagger 2.0 swagger.json
file to exist relative to the Swagger UI folder.