npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nest-swagger-mapper

v1.1.0

Published

CLI para mapear o Swagger e retornar o JSON por rota ou módulo.

Downloads

12

Readme

Swagger Mapper CLI

Version: 1.0.0

Descrição

O Swagger Mapper CLI é uma ferramenta de linha de comando (CLI) que permite filtrar e mapear um arquivo Swagger JSON, retornando informações separadas por módulos ou rotas específicos. A ferramenta também salva o resultado filtrado em um arquivo JSON, com suporte para incluir os esquemas relacionados (schemas), informações de segurança (security, securitySchemes) e outros detalhes importantes como info e paths.

Funcionalidades

  • Busca o arquivo Swagger JSON de uma URL fornecida.
  • Filtra rotas específicas por tags (módulos ou rotas) fornecidas.
  • Retorna as rotas e os esquemas JSON filtrados.
  • Inclui informações de segurança (security, securitySchemes).
  • Suporte para requestBody, responses, info e versão do OpenAPI.
  • Salva o resultado filtrado em um arquivo JSON, se especificado.
  • Exibe o resultado no console ou em um arquivo de saída.

Instalação

Pré-requisitos

  • Node.js (versão 12 ou superior)
  • npm (Node Package Manager)

Passo a Passo

  1. Clone este repositório:
git clone https://github.com/seu-usuario/swagger-mapper-cli.git
cd swagger-mapper-cli
  1. Instale as dependências do projeto:
npm install
  1. Para instalar a ferramenta globalmente:
npm install -g .

Ou instale via npm

npm i nest-swagger-mapper

Agora a ferramenta estará disponível em seu sistema como swagger-mapper.

Uso

Após a instalação, você pode usar a ferramenta através da linha de comando da seguinte forma:

Comandos

swagger-mapper --modules <nomes-dos-modulos> --url <url-do-swagger-json> [opções]

Exemplos

Exibir no console o mapeamento do Swagger JSON filtrado por dois módulos

swagger-mapper --modules users,products --url http://localhost:3000/swagger-json --title "Minha API" --description "Descrição personalizada da API"

Exibir no console o mapeamento do Swagger JSON filtrado por duas rotas

swagger-mapper --path /users,/products --url http://localhost:3000/swagger-json --title "Minha API" --description "Descrição personalizada da API"

Salvar o resultado filtrado em um arquivo JSON

swagger-mapper --modules users,products --url http://localhost:3000/swagger-json --title "Minha API" --description "Descrição personalizada da API" --output filtered-swagger.json

Parâmetros

| Parâmetro | Descrição | Padrão | |------------|---------------------------------------------------------------------------|--------------------------------------| | --url | A URL do Swagger JSON que será processado. | http://localhost:3000/swagger-json | | --modules| Nomes dos módulos a serem filtrados, separados por vírgulas. | Obrigatório | | --path | Nomes das rotas a serem filtradas, separados por vírgulas. | Obrigatório | | --output | Caminho do arquivo onde o JSON filtrado será salvo. | Não salva em arquivo, mostra no console |

Estrutura do JSON Gerado

O arquivo JSON filtrado gerado pela ferramenta segue a estrutura abaixo:

{
  "openapi": "3.0.0",
  "info": {
    "title": "Dummy API",
    "version": "1.0.0",
    "description": "Dummy description"
  },
  "security": [],
  "paths": {
    "/api/users": {
      "get": {
        "tags": ["users"],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "User": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string"
          }
        }
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer"
      }
    }
  }
}

Contribuição

Sinta-se à vontade para abrir issues e pull requests no repositório do GitHub. Suas contribuições são bem-vindas!