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

swagger-decorators-express

v1.0.2

Published

Uma biblioteca de decoradores em TypeScript para gerar documentação Swagger de forma automática para APIs. Simplifica a criação de definições de rota, parâmetros, e respostas usando decoradores, permitindo uma documentação mais clara e fácil de manter.

Downloads

17

Readme

Swagger Decorators

Uma biblioteca de decoradores em TypeScript para gerar documentação Swagger de forma automática para APIs. Simplifica a criação de definições de rota, parâmetros, e respostas usando decoradores, permitindo uma documentação mais clara e fácil de manter.

Sumário

Instalação

Primeiro, instale a biblioteca com o seguinte comando:

npm install swagger-decorators-express

Configurações

No seu arquivo tsconfig.json habilite essas duas configurações, para que seja possível o uso dos decorators.

 "experimentalDecorators": true,
 "emitDecoratorMetadata": true

No arquivo principal da sua api index.ts por exemplo, importe as funções para gerar o swagger.

import { generateSwaggerDocs } from "swagger-decorators";

const { swaggerUiServe, swaggerUiSetup } = generateSwaggerDocs(
      [new ExampleController()],
      {
        openapi: "3.0.0",
        info: {
          title: "API Example",
          version: "1.0.0",
          description: "API Documentation",
        },
      }
    );
this.app.use("/docs", swaggerUiServe, swaggerUiSetup);

Uso

Definindo Controladores e Rotas

import { ControllerDocs, RouteDocs } from 'swagger-decorators';

@ControllerDocs('/example')
export class ExampleController {
  @RouteDocs({
    path: '/',
    method: 'get',
    summary: 'Get example',
    description: 'Retrieve example data',
  })
  getExample() {
    return { message: 'Hello, World!' };
  }

  @RouteDocs({
    path: '/create',
    method: 'post',
    summary: 'Create example',
    description: 'Create new example entry',
  })
  createExample() {
    return { message: 'Created!' };
  }
}

Especificando Parâmetros

const parameters = [
  {
    in: 'header',
    name: 'api-key',
    required: true,
    schema: {
      type: 'string',
      example: 'my-api-key',
    },
  },
];

Especificando Corpo de Requisição

const requestBody = {
  content: {
    'application/json': {
      schema: {
        type: 'object',
        properties: {
          email: { type: 'string' }
        },
        example: {
          email: '[email protected]'
        },
      },
    },
  },
};

Definindo Respostas

const responses: Responses = {
  200: {
    description: 'Operação realizada com sucesso.',
    content: {
      'application/json': {
        schema: {
          type: 'object',
          properties: {
            id: { type: 'number', example: 1 },
            value: { type: 'number', example: 10 },
            type: { type: 'string', example: 'example' },
          },
        },
      },
    },
  },
  default: {
    description: 'Erro inesperado',
  },
};

Exemplo completo

import { ControllerDocs, RouteDocs } from 'swagger-decorators';

@ControllerDocs('/client')
export class ClientController {
  @RouteDocs({
    path: '/edit',
    method: 'put',
    summary: 'Edita as informações de um cliente',
    tags: ['Client'],
    parameters: [
      {
        in: 'header',
        name: 'security-key',
        required: true,
        schema: {
          type: 'string',
          example: 'my-api-key',
        },
      },
    ],
    requestBody: {
      content: {
        'application/json': {
          schema: {
            type: 'object',
            properties: {
              email: { type: 'string' },
              phone: { type: 'string' }
            },
            example: {
              email: '[email protected]',
              phone: '1234567890'
            },
          },
        },
      },
    },
    responses: {
      200: {
        description: 'Informações do cliente editadas com sucesso.',
      },
      default: {
        description: 'Erro ao editar as informações do cliente.',
      },
    },
  })
  editClient() {
    return { message: 'Cliente atualizado!' };
  }
}

Contribuindo

Sinta-se à vontade para abrir issues ou pull requests para melhorias e correções. Feedback e sugestões são bem-vindos

Licença


Este arquivo fornece uma documentação detalhada da instalação, uso e principais recursos da biblioteca, com exemplos práticos para que outros desenvolvedores possam usar sua biblioteca facilmente.