Nest AutoCRUD
Go to file
2024-11-02 01:08:24 +07:00
libs chore: add other notes in custom crud controller 2024-11-02 00:58:23 +07:00
prisma wip: sample with prisma 2024-10-26 20:01:34 +07:00
scripts/unix feat: full working basic crud and customizable process 2024-10-31 23:54:35 +07:00
src fix: standarize the import source 2024-11-02 00:56:39 +07:00
test fix: mapper 2024-10-29 10:54:10 +07:00
.env.example chore: env and prisma init 2024-10-26 19:17:58 +07:00
.eslintrc.js wip: controller 2024-10-26 15:35:59 +07:00
.gitignore chore: change to package instead of dist 2024-10-29 09:48:50 +07:00
.npmignore chore: change to package instead of dist 2024-10-29 09:48:50 +07:00
.prettierrc wip: controller 2024-10-26 15:35:59 +07:00
.release-it.json feat: using release-it instead 2024-10-29 10:08:36 +07:00
jsr.json feat: add jsr 2024-10-29 01:38:53 +07:00
nest-cli.json wip: prisma support 2024-10-26 19:15:42 +07:00
package-lock.json fix: pagination not a number format by dto 2024-11-01 17:16:36 +07:00
package.json chore: update version 0.2.0 for custom crud controller 2024-11-02 01:08:24 +07:00
README.md chore: some basic roadmap already completed 2024-11-02 01:00:37 +07:00
tsconfig.build.json wip: controller 2024-10-26 15:35:59 +07:00
tsconfig.json fix: mapper 2024-10-29 10:54:10 +07:00

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

Status

This project is still in development and not ready for production, it's not even ready to install yet. Calling for contributors to help this project.

Description

Nest Auto CRUD is a library that provides a set of modules, decorator, service, and many more to reduce the boilerplate code.

Roadmap

Basic Thing

  • Custom body mapping
  • Custom validation

Tailored Controller Abstraction

  • Controller options for only read and update
  • Controller options for only create and delete
  • Controller options for only read
  • Controller options for only update
  • Controller options for only create
  • Controller options for only delete
  • Controller options for only read and create

Advanced Support

  • Generic support for Prisma ORM #5273

Installation

$ npm install @aditama-labs/nest-autocrud

Example

Prisma ORM

// Your Module
@Module({
  imports: [
    // This module will automatically map your model to the controller
    PrismaModule.forRoot({
      delegate: (prisma: PrismaClient) => prisma.user,
    }),
  ],
  controllers: [AppController],
  providers: [AppService],
})
export class AppModule {}

// Your Controller
@Controller('examples')
export class AppController extends SkeletonCRUDController {
  // Yes, no need to write anything here
}

// Expected Output ( As you can see the API is automatically mapped and generated )
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [NestFactory] Starting Nest application...
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [InstanceLoader] PrismaModule dependencies initialized +14ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [InstanceLoader] AppModule dependencies initialized +0ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RoutesResolver] AppController {/example}: +3ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RouterExplorer] Mapped {/example, POST} route +3ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RouterExplorer] Mapped {/example/:id, DELETE} route +1ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RouterExplorer] Mapped {/example/list, GET} route +0ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RouterExplorer] Mapped {/example, GET} route +1ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RouterExplorer] Mapped {/example/:id, GET} route +0ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [RouterExplorer] Mapped {/example/:id, PATCH} route +0ms
[Nest] 125875  - 10/30/2024, 10:57:56 PM     LOG [NestApplication] Nest application successfully started +148ms

TypeORM

COMING SOON

Support

Nest AutoCRUD is an MIT-licensed open source project.

Stay in touch

License

Nest AutoCRUD is MIT licensed