Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/will123195/express-swagger-explorer
Swagger UI Responsive Theme for Express.js
https://github.com/will123195/express-swagger-explorer
Last synced: 10 days ago
JSON representation
Swagger UI Responsive Theme for Express.js
- Host: GitHub
- URL: https://github.com/will123195/express-swagger-explorer
- Owner: will123195
- Created: 2016-06-23T03:46:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T15:21:29.000Z (over 7 years ago)
- Last Synced: 2024-10-06T03:26:57.456Z (3 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# express-swagger-explorer
## Install
```
npm i --save express-swagger-explorer
```## Usage
```js
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](http://localhost:8080/api-documentation)
Note: Swagger UI expects a Swagger 2.0 `swagger.json` file to exist relative to the Swagger UI folder.