Implementacja API Node.js Gateway- Zarządzanie API Gateways za pomocą Swagger

Tworzenie API Gateway przy użyciu Node.js z Express biblioteką i integrowanie Swagger dokumentacji API można wykonać w następujący sposób:

Krok 1: Skonfiguruj projekt i zainstaluj biblioteki

  1. Utwórz nowy katalog dla swojego projektu.
  2. Otwórz Command Prompt lub Terminal i przejdź do katalogu projektu: cd path_to_directory.
  3. Zainicjuj pakiet npm: npm init -y.
  4. Zainstaluj wymagane biblioteki:. npm install express ocelot swagger-ui-express

Krok 2: Skonfiguruj Express i Ocelot

Utwórz plik o nazwie app.js w katalogu projektu i otwórz go, aby skonfigurować Express:

const express = require('express');  
const app = express();  
const port = 3000;  
  
// Define routes here  
  
app.listen(port,() => {  
  console.log(`API Gateway is running at http://localhost:${port}`);  
});  

Utwórz plik konfiguracyjny o nazwie ocelot-config.json określającej routing żądań:

{  
  "Routes": [  
    {  
      "DownstreamPathTemplate": "/service1/{everything}",  
      "DownstreamScheme": "http",  
      "DownstreamHostAndPorts": [  
        {  
          "Host": "localhost",  
          "Port": 5001  
        }  
      ],  
      "UpstreamPathTemplate": "/api/service1/{everything}",  
      "UpstreamHttpMethod": [ "GET", "POST", "PUT", "DELETE" ]  
    }  
    // Add other routes here  
  ]  
}  

Krok 3: Integracja Swagger

W app.js pliku dodaj następujący kod w celu integracji Swagger:

const swaggerUi = require('swagger-ui-express');  
const swaggerDocument = require('./swagger.json'); // Create a swagger.json file  
  
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerDocument));  

Utwórz plik o nazwie swagger.json w katalogu projektu i zdefiniuj informacje dotyczące dokumentacji API:

{  
  "swagger": "2.0",  
  "info": {  
    "title": "API Gateway",  
    "version": "1.0.0"  
  },  
  "paths": {  
    "/api/service1/{everything}": {  
      "get": {  
        "summary": "Get data from Service 1",  
        "responses": {  
          "200": {  
            "description": "Successful response"  
          }  
        }  
      }  
    }  
    // Add definitions for other APIs here  
  }  
}  

Krok 4: Uruchom projekt

Otwórz Command Prompt lub Terminal i przejdź do katalogu projektu.

Uruchom projekt za pomocą polecenia: node app.js.

Krok 5: Uzyskaj dostęp Swagger do interfejsu użytkownika

Dostęp do Swagger interfejsu użytkownika pod adresem: http://localhost:3000/api-docs.

Należy pamiętać, że jest to prosty przykład wdrożenia API Gateway i integracji Swagger przy użyciu Node.js. W praktyce należy wziąć pod uwagę takie aspekty, jak bezpieczeństwo, wersjonowanie, konfiguracja niestandardowa i inne kwestie.