> [Swagger](http://swagger.io) API Documentations Viewer
npm install swagger-docs> Swagger API Documentations Viewer

swagger.json).access_token in documentations.#### Serve static files
Swagger Docs is a static web application. You can download it via npm and serve
the dist folder in your web server. Swagger Docs will make a request to ./swagger.json
to get the Swagger document to render.
``shell`
npm install swagger-docs
#### Use the Connect middle-ware
If you are using Express or any other Connect based server, there is a connect middle-ware.
`js
var SwaggerDocs = require('swagger-docs');
var swagger = require('path/to/swagger.json');
app.use(SwaggerDocs.middleWare(swagger, {path: '/api-documentations'}));
``