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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@developersailor/express-openapi-decorators

v2.1.1

Published

NestJS-like Swagger decorators for Express.js and TypeScript

Downloads

1,078

Readme

Express OpenAPI Decorators

npm version npm downloads License: MIT Node.js Version

NestJS-like Swagger decorators for Express.js and TypeScript.

Generate OpenAPI 3.0 documentation from TypeScript decorators without writing YAML, JSON, or JSDoc comments.

Features

  • 🎯 No YAML - No more writing OpenAPI YAML files
  • 📝 No JSDoc - No more @swagger JSDoc comments
  • 🚀 NestJS-like DX - Similar developer experience to NestJS
  • 📦 DTO-based Schemas - Automatic schema generation from decorated DTO classes
  • Express-friendly - Designed for Express.js applications
  • 🔷 TypeScript-first - Full TypeScript support

Installation

# npm
npm install @developersailor/express-openapi-decorators reflect-metadata

# yarn
yarn add @developersailor/express-openapi-decorators reflect-metadata

# pnpm
pnpm add @developersailor/express-openapi-decorators reflect-metadata

Peer Dependencies

This package requires reflect-metadata to be installed alongside it:

npm install reflect-metadata

Also make sure you have Express and swagger-ui-express installed:

npm install express swagger-ui-express
npm install -D @types/express @types/swagger-ui-express

Quick Start

1. Enable Decorators

Update your tsconfig.json:

{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  }
}

2. Import Reflect Metadata

At the top of your entry file:

import 'reflect-metadata';

3. Create DTOs with @ApiProperty

import { ApiProperty, ApiPropertyOptional } from '@developersailor/express-openapi-decorators';

export class UserDto {
  @ApiProperty({
    type: String,
    example: 'user_123',
    description: 'Unique user identifier',
  })
  id!: string;

  @ApiProperty({
    type: String,
    example: 'Mehmet',
    description: 'User name',
  })
  name!: string;

  @ApiProperty({
    type: String,
    format: 'email',
    example: '[email protected]',
    description: 'User email address',
  })
  email!: string;

  @ApiPropertyOptional({
    type: Number,
    example: 25,
    description: 'User age',
  })
  age?: number;

  @ApiProperty({
    enum: ['active', 'inactive', 'suspended'],
    example: 'active',
    description: 'User account status',
  })
  status!: 'active' | 'inactive' | 'suspended';

  @ApiProperty({
    type: [String],
    example: ['admin', 'user'],
    description: 'User roles',
  })
  roles!: string[];
}

export class CreateUserDto {
  @ApiProperty({
    type: String,
    example: 'Mehmet',
    description: 'User name',
  })
  name!: string;

  @ApiProperty({
    type: String,
    format: 'email',
    example: '[email protected]',
    description: 'User email address',
  })
  email!: string;
}

4. Create Controllers with Decorators

import {
  Controller,
  Get,
  Post,
  Put,
  Delete,
  ApiTags,
  ApiOperation,
  ApiResponse,
  ApiBody,
  ApiQuery,
  ApiParam,
} from '@developersailor/express-openapi-decorators';
import { Request, Response } from 'express';
import { UserDto, CreateUserDto } from './dto/user.dto';

@ApiTags('Users')
@Controller('/users')
export class UserController {
  @Get('/')
  @ApiOperation({
    summary: 'List all users',
    description: 'Returns a paginated list of all users in the system',
  })
  @ApiQuery({
    name: 'page',
    type: Number,
    required: false,
    example: 1,
    description: 'Page number (default: 1)',
  })
  @ApiQuery({
    name: 'limit',
    type: Number,
    required: false,
    example: 10,
    description: 'Number of items per page (default: 10)',
  })
  @ApiResponse({
    status: 200,
    description: 'List of users retrieved successfully',
    type: [UserDto], // Array response
  })
  listUsers(req: Request, res: Response) {
    // Your implementation
    res.json({ users: [] });
  }

  @Get('/:id')
  @ApiOperation({
    summary: 'Get user by ID',
    description: 'Returns detailed information about a specific user',
  })
  @ApiParam({
    name: 'id',
    type: String,
    required: true,
    example: 'user_123',
    description: 'User unique identifier',
  })
  @ApiResponse({
    status: 200,
    description: 'User found',
    type: UserDto,
  })
  @ApiResponse({
    status: 404,
    description: 'User not found',
  })
  getUser(req: Request, res: Response) {
    // Your implementation
    res.json({ id: req.params.id });
  }

  @Post('/')
  @ApiOperation({
    summary: 'Create new user',
    description: 'Creates a new user account with the provided information',
  })
  @ApiBody(CreateUserDto)
  @ApiResponse({
    status: 201,
    description: 'User created successfully',
    type: UserDto,
  })
  createUser(req: Request, res: Response) {
    // Your implementation
    res.status(201).json({ id: 'new_user_123' });
  }

  @Put('/:id')
  @ApiOperation({
    summary: 'Update user',
    description: 'Updates all fields of an existing user',
  })
  @ApiParam({
    name: 'id',
    type: String,
    required: true,
    example: 'user_123',
  })
  @ApiBody(CreateUserDto)
  @ApiResponse({
    status: 200,
    description: 'User updated successfully',
    type: UserDto,
  })
  updateUser(req: Request, res: Response) {
    // Your implementation
    res.json({ id: req.params.id });
  }

  @Delete('/:id')
  @ApiOperation({
    summary: 'Delete user',
    description: 'Permanently removes a user from the system',
  })
  @ApiParam({
    name: 'id',
    type: String,
    required: true,
    example: 'user_123',
  })
  @ApiResponse({
    status: 204,
    description: 'User deleted successfully',
  })
  deleteUser(req: Request, res: Response) {
    // Your implementation
    res.status(204).send();
  }
}

5. Generate OpenAPI Document

import 'reflect-metadata';
import express from 'express';
import swaggerUi from 'swagger-ui-express';
import { createOpenApiDocument } from '@developersailor/express-openapi-decorators';
import { UserController } from './controllers/user.controller';

const app = express();
app.use(express.json());

// Generate OpenAPI document
const openApiDocument = createOpenApiDocument({
  title: 'My API',
  description: 'API documentation for my application',
  version: '1.0.0',
  servers: [
    {
      url: 'http://localhost:3000',
      description: 'Local development server',
    },
  ],
  controllers: [UserController],
});

// Setup Swagger UI
app.use('/docs', swaggerUi.serve, swaggerUi.setup(openApiDocument));

// Your routes...
app.get('/users', (req, res) => {
  // Implementation
});

app.listen(3000, () => {
  console.log('Server running on http://localhost:3000');
  console.log('Swagger UI available at http://localhost:3000/docs');
});

Available Decorators

Controller Decorators

| Decorator | Description | |-----------|-------------| | @Controller(path) | Marks a class as an API controller with a base path | | @ApiTags(...tags) | Adds OpenAPI tags to all endpoints in the controller |

HTTP Method Decorators

| Decorator | Description | |-----------|-------------| | @Get(path?) | Marks a method as a GET endpoint | | @Post(path?) | Marks a method as a POST endpoint | | @Put(path?) | Marks a method as a PUT endpoint | | @Patch(path?) | Marks a method as a PATCH endpoint | | @Delete(path?) | Marks a method as a DELETE endpoint |

Endpoint Decorators

| Decorator | Description | |-----------|-------------| | @ApiOperation(options) | Adds operation metadata (summary, description) | | @ApiResponse(status, type) | Shorthand for response with type | | @ApiResponse(options) | Detailed response configuration | | @ApiBody(DtoClass) | Shorthand for request body | | @ApiBody(options) | Detailed request body configuration | | @ApiQuery(options) | Adds a query parameter | | @ApiParam(options) | Adds a path parameter |

DTO Decorators

| Decorator | Description | |-----------|-------------| | @ApiProperty(options) | Defines a property in a DTO | | @ApiPropertyOptional(options) | Defines an optional property (shorthand) |

@ApiProperty Options

@ApiProperty({
  type: String,              // Property type (String, Number, Boolean, or DTO class)
  example: 'value',          // Example value
  description: 'A field',    // Field description
  required: true,            // Whether field is required (default: true)
  enum: ['a', 'b', 'c'],     // Enum values
  format: 'email',           // OpenAPI format (email, date-time, uuid, etc.)
  default: 'default',        // Default value
})

For arrays:

@ApiProperty({
  type: [UserDto],           // Array of DTOs
})
roles!: UserDto[];

API Reference

createOpenApiDocument

const document = createOpenApiDocument({
  // OpenAPI version (default: '3.0.3')
  openapi?: string;
  
  // Required
  title: string;
  
  // Optional
  description?: string;
  
  // Required
  version: string;
  
  // Optional
  servers?: Array<{
    url: string;
    description?: string;
  }>;
  
  // Required - Controller classes
  controllers: Function[];
  
  // Optional
  contact?: {
    name?: string;
    email?: string;
    url?: string;
  };
  
  // Optional
  license?: {
    name: string;
    url?: string;
  };
});

Examples

Array Response

@ApiResponse({
  status: 200,
  description: 'List of users',
  type: [UserDto],  // Note the array syntax
})
getAllUsers() {}

Multiple Responses

@ApiResponse({
  status: 200,
  description: 'User found',
  type: UserDto,
})
@ApiResponse({
  status: 404,
  description: 'User not found',
  type: ErrorDto,
})
@ApiResponse({
  status: 401,
  description: 'Unauthorized',
})
getUser() {}

Query Parameters

@ApiQuery({
  name: 'search',
  type: String,
  required: false,
  description: 'Search term',
})
@ApiQuery({
  name: 'page',
  type: Number,
  required: false,
  example: 1,
})
searchUsers() {}

Path Parameters

@ApiParam({
  name: 'id',
  type: String,
  required: true,
  description: 'User ID',
})
getUserById() {}

Requirements

  • Node.js >= 18.0.0
  • TypeScript >= 5.0
  • experimentalDecorators: true in tsconfig.json
  • emitDecoratorMetadata: true in tsconfig.json

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Roadmap

  • [x] Core decorator system
  • [x] DTO schema generation
  • [x] Query and path parameters
  • [x] Authentication decorators (@ApiBearerAuth)
  • [x] File upload support
  • [x] Validation integration (class-validator, zod)
  • [x] Route registration helper
  • [x] OpenAPI 3.1.0 support