Skip to content
MartinDrost edited this page Nov 18, 2019 · 6 revisions

Nest Logo

A package which supplements NestJS applications with out of the box CRUD functionality and parameter actions.

NPM Downloads NPM Version

Getting started

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.

Clone this wiki locally