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

@nestgate/rest

v0.0.1

Published

Elegant REST API decorators combining routing, validation, and documentation

Readme

@nestgate/rest

Elegant REST API decorators that combine routing, validation, and documentation in a single decorator.

🎯 Features

  • Composable Decorators - Combine @Get, @Post, etc. with @ApiResponse and @ApiOperation
  • Auto-Documentation - Swagger integration out of the box
  • Type-Safe - Full TypeScript support
  • Clean Code - Reduce boilerplate significantly

📦 Installation

npm install @nestgate/rest
# or
pnpm add @nestgate/rest
# or
yarn add @nestgate/rest

🚀 Quick Start

Before NestGate

import { Controller, Get, Post } from '@nestjs/common';
import { ApiOperation, ApiResponse, ApiTags } from '@nestjs/swagger';

@Controller('users')
@ApiTags('Users')
export class UsersController {
  @Get()
  @ApiOperation({ summary: 'Get all users' })
  @ApiResponse({ status: 200, type: [UserDto] })
  async findAll() {
    // ...
  }

  @Post()
  @ApiOperation({ summary: 'Create a new user' })
  @ApiResponse({ status: 201, type: UserDto })
  async create() {
    // ...
  }
}

With NestGate

import { Controller } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
import { ApiGet, ApiPost } from '@nestgate/rest';

@Controller('users')
@ApiTags('Users')
export class UsersController {
  @ApiGet('', UserDto, {
    summary: 'Get all users',
  })
  async findAll() {
    // ...
  }

  @ApiPost('', UserDto, {
    summary: 'Create a new user',
  })
  async create() {
    // ...
  }
}

📚 API Reference

Available Decorators

  • @ApiGet(path?, model?, options?) - Combines @Get(), @ApiResponse(), @ApiOperation()
  • @ApiPost(path?, model?, options?) - Combines @Post(), @ApiResponse(), @ApiOperation()
  • @ApiPatch(path?, model?, options?) - Combines @Patch(), @ApiResponse(), @ApiOperation()
  • @ApiPut(path?, model?, options?) - Combines @Put(), @ApiResponse(), @ApiOperation()
  • @ApiDelete(path?, model?, options?) - Combines @Delete(), @ApiResponse(), @ApiOperation()

Parameters

path (optional)

  • Type: string
  • Default: ''
  • Description: The route path

model (optional)

  • Type: Type<any>
  • Description: The response model class for Swagger documentation

options (optional)

  • Type: ApiGateOptions
  • Properties:
    • summary?: string - API operation summary
    • description?: string - API operation description
    • deprecated?: boolean - Mark as deprecated

Status Codes

  • @ApiGet - Returns 200 OK
  • @ApiPost - Returns 201 Created
  • @ApiPatch - Returns 200 OK
  • @ApiPut - Returns 201 Created
  • @ApiDelete - Returns 200 OK if model provided, 204 No Content if not

💡 Examples

Basic Usage

import { ApiGet } from '@nestgate/rest';

@ApiGet('users', UserDto)
findAll() {
  return this.userService.findAll();
}

With Options

import { ApiGet } from '@nestgate/rest';

@ApiGet('users', UserDto, {
  summary: 'Get all users',
  description: 'Retrieves a paginated list of all users',
  deprecated: false
})
findAll() {
  return this.userService.findAll();
}

With Path Parameters

import { ApiGet } from '@nestgate/rest';

@ApiGet('users/:id', UserDto, {
  summary: 'Get user by ID'
})
findOne(@Param('id') id: string) {
  return this.userService.findOne(id);
}

Delete Without Response Model

import { ApiDelete } from '@nestgate/rest';

@ApiDelete('users/:id', undefined, {
  summary: 'Delete user'
})
// Returns 204 No Content
remove(@Param('id') id: string) {
  return this.userService.remove(id);
}

Delete With Response Model

import { ApiDelete } from '@nestgate/rest';

@ApiDelete('users/:id', UserDto, {
  summary: 'Delete user and return deleted data'
})
// Returns 200 OK with user data
remove(@Param('id') id: string) {
  return this.userService.remove(id);
}

🔗 Related Packages

📝 License

MIT © NestGate

🤝 Contributing

Contributions are welcome! Please see our Contributing Guide.

💬 Support