在Ubuntu上查看Swagger API文档,你可以通过以下几种方法:
git clone https://github.com/swagger-api/swagger-editor.git
cd swagger-editor
npm install
npm start
在线使用:访问Swagger UI官网,可以直接在线使用Swagger UI查看API文档。
本地安装:
git clone https://github.com/swagger-api/swagger-ui.git
cd swagger-ui
npm install
npm start
通过Docker安装:
sudo apt update
sudo apt install docker.io
docker pull swaggerapi/swagger-ui-express
docker run -p 8080:8080 swaggerapi/swagger-ui-express
通过Node.js和Express手动安装:
sudo apt update
sudo apt install nodejs npm
mkdir swagger-ui-project
cd swagger-ui-project
npm init -y
npm install swagger-ui-express
app.js
):const express = require('express');
const swaggerUi = require('swagger-ui-express');
const YAML = require('yamljs');
// Load Swagger document
const swaggerDocument = YAML.load('./swagger.yaml');
const app = express();
// Serve Swagger docs
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerDocument));
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});
swagger.yaml
):swagger: '2.0'
info:
title: Sample API
description: A sample API to demonstrate Swagger UI on Ubuntu
version: '1.0.0'
host: localhost:3000
basePath: /api-docs
schemes:
- http
paths:
/users:
get:
summary: List all users
responses:
'200':
description: An array of users
schema:
type: array
items:
$ref: '#/definitions/User'
definitions:
User:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
required:
- id
- name
node app.js
希望这些信息能帮助你在Ubuntu上找到并查看Swagger API文档。