GitHub
github.com › nestjsx › crud
GitHub - nestjsx/crud: NestJs CRUD for RESTful APIs · GitHub
@nestjsx/crud - core package which provides @Crud() decorator for endpoints generation, global configuration, validation, helper decorators (docs)
Starred by 4.3K users
Forked by 578 users
Languages TypeScript
GitHub
github.com › nestjsx › crud › wiki › Controllers
Controllers · nestjsx/crud Wiki · GitHub
@nestjsx/crud - core package which provides @Crud() controller decorator for endpoints generation, global configuration, validation, helper decorators.
Author nestjsx
06:59
NestJS Tutorial #28 | Custom Decorator - YouTube
06:06
Create Powerful Custom Decorators in NestJS #nestjs - YouTube
#94 Understanding Decorators | Authentication in Nest JS | A ...
Você Sabe usar Decorators junto com Interceptors no NestJS?
Creating a Custom Decorator (Controller Execution Time) in ...
Crud for NestJS
gid-oss.github.io › dataui-nestjs-crud › controllers
Controllers | Crud for NestJS
There are two additional decorators that come out of the box: @Feature() and @Action(). You can use them with your ACL implementation. @Action() will be applyed automaticaly on controller compoesd base methods. There is CrudActions enum that you can import and use:
GitHub
github.com › woowabros › nestjs-library-crud
GitHub - woowabros/nestjs-library-crud: Automatically generate CRUD Rest API based on NestJS and TypeOrm · GitHub
The decorator generates endpoints for not only create, retrieve one, retrieve many, update, delete but also upsert, recover and search operations for the entity. Automatically generates CRUD routes for a given TypeORM entity
Starred by 231 users
Forked by 41 users
Languages TypeScript 98.5% | JavaScript 1.5%
GitHub
github.com › nestjsx › crud › blob › master › packages › crud › src › decorators › crud.decorator.ts
crud/packages/crud/src/decorators/crud.decorator.ts at master · nestjsx/crud
NestJs CRUD for RESTful APIs. Contribute to nestjsx/crud development by creating an account on GitHub.
Author nestjsx
npm
npmjs.com › package › @nestjs-library › crud
nestjs-library/crud
The decorator generates endpoints for not only create, retrieve one, retrieve many, update, delete but also upsert, recover and search operations for the entity. Automatically generates CRUD routes for a given TypeORM entity
» npm install @nestjs-library/crud
Published May 16, 2025
Version 0.13.1
npm
npmjs.com › package › @nestjsx › crud
@nestjsx/crud - npm
February 11, 2021 - @nestjsx/crud - core package which provides @Crud() decorator for endpoints generation, global configuration, validation, helper decorators (docs)
» npm install @nestjsx/crud
Published Feb 11, 2021
Version 5.0.0-alpha.3
GitHub
github.com › andreyyoshua › nestjsx-crud › blob › master › README.md
nestjsx-crud/README.md at master · andreyyoshua/nestjsx-crud
Attach @Override('getManyBase') decorator with passed base method name as an argument if you want to override base method with a function that has a custom name. ... import { Crud, CrudController, Override, RestfulParamsDto, ParsedQuery, ParsedParams, ParsedOptions } from '@nestjsx/crud'; @Crud(Hero, {}) @Controller('heroes') export class HeroesCrud { constructor(public service: HeroesService) {} get base(): CrudController<HeroesService, Hero> { return this; } @Override() getMany( @ParsedQuery() query: RestfulParamsDto, @ParsedOptions() options: CrudOptions, ) { // do some stuff return this.ba
Author andreyyoshua
GitHub
github.com › nestjsx › crud › blob › master › packages › crud › src › decorators › parsed-request.decorator.ts
crud/packages/crud/src/decorators/parsed-request.decorator.ts at master · nestjsx/crud
March 14, 2020 - import { createParamDecorator } from '@nestjs/common'; · import { PARSED_CRUD_REQUEST_KEY } from '../constants'; import { R } from '../crud/reflection.helper'; ·
Author nestjsx
npm
npmjs.com › package › @nestjsx › crud-request
@nestjsx/crud-request - npm
February 11, 2021 - @nestjsx/crud - core package which provides @Crud() decorator for endpoints generation, global configuration, validation, helper decorators (docs)
» npm install @nestjsx/crud-request
Published Feb 11, 2021
Version 5.0.0-alpha.3
Author Michael Yali
Repository https://github.com/nestjsx/crud
Medium
sabljakovich.medium.com › nestjs-crud-web-services-32f4cd333f1a
NestJS — build CRUD web services in minutes | by Hamza Sabljakovic | Medium
January 5, 2020 - import { Injectable } from '@nestjs/common';@Injectable() export class ProductService {} With: Press enter or click to view image in full size · Product service — Source code · Controller · In the product.controller.ts, we need to attach the @Crud decorator to wire everything together.
npm
npmjs.com › package › @nestjsx › crud-typeorm
@nestjsx/crud-typeorm - npm
February 11, 2021 - @nestjsx/crud - core package which provides @Crud() decorator for endpoints generation, global configuration, validation, helper decorators (docs)
» npm install @nestjsx/crud-typeorm
Published Feb 11, 2021
Version 5.0.0-alpha.3
Author Michael Yali
Repository https://github.com/nestjsx/crud