NestJS 是否有用于生成 CRUD 的内置工具

Does NestJS has built-in tools for CRUD generation

NestJS 是否具有像 Loopback 或 Sails.js 那样的用于生成 CRUD 的内置工具?我真的很喜欢 NestJS 的想法,但我不想在每个控制器中重复相同的事情。如果有人能解释我怎样才能达到它,我将不胜感激?

不,NestJS 没有开箱即用的功能,但您可以使用 nestjsx/crud, It allows you to use all CRUD operation only by declaring an entity class. Check the getting-started page.

编辑:现在 NestJS 有一个内置原理图,您可以在 trilon 博客

上找到 guide here