-
Notifications
You must be signed in to change notification settings - Fork 1
Home
MartinDrost edited this page Nov 18, 2019
·
6 revisions
A package which supplements NestJS applications with out of the box CRUD functionality and parameter actions.
First install the package.
$ npm install nest-utilities
Then initialize the package using your NestJS application in your main.ts.
async function bootstrap() {
const app = await NestFactory.create(AppModule);
initNestUtilities(app);
await app.listen(process.env.PORT);
}
And you're good to go! You can start creating services and controllers while keeping your application DRY and focusing on features.
Made by Martin Drost - Buy me a ☕