🌐
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
🌐
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%
🌐
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
🌐
Scalio
scal.io › work › nestjs-crud
NestJS Crud | Scalio
@nestjsx/crud - core package which provides @Crud() decorator for endpoints generation, global configuration, validation, helper decorators (docs)
🌐
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
Find elsewhere
🌐
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
🌐
NestJS CRUD
nestjsx-crud.mintlify.app › introduction
Introduction - NestJS CRUD
Generate complete CRUD APIs with a single @Crud() decorator.
🌐
DEV Community
dev.to › sanx › building-a-crud-api-with-nestjs-2iak
Building a CRUD API with NestJS - DEV Community
October 6, 2024 - These are the crud services for our API. @Injectable(): This is a decorator, that makes our service to be used in the controller, with injection. NestJS provides a powerful Dependency Injection system that automatically resolves and manages dependencies across the application.
🌐
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
🌐
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.
🌐
NestJS
docs.nestjs.com › recipes › crud-generator
CRUD generator | NestJS - A progressive Node.js framework
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).
🌐
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
🌐
Documentation
ru-nestjs-docs.netlify.app › recipes › crud-utilities
Documentation | NestJS - A progressive Node.js framework
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Progamming), FP (Functional Programming), and FRP (Functional Reactive Programming).