NestJS application bootstrapper for Edirect projects. Provides a standard way to initialize and configure NestJS apps with Edirect conventions, including config loading, metadata, and port management.
npm install @edirect/nest-appNestJS application bootstrapper for Edirect projects. Provides a standard way to initialize and configure NestJS apps with Edirect conventions, including config loading, metadata, and port management.
- Standardized bootstrap for NestJS apps
- Loads configuration and metadata from environment
- Integrates with Edirect config and logger modules
``bash`
npm install @edirect/nest-app
`typescript
import { bootstrap } from '@edirect/nest-app';
import { AppModule } from './app.module';
bootstrap(AppModule, {
configPath: 'development.env',
title: 'MyApp',
description: 'MyApp Description',
version: '1.0',
tag: 'app',
port: 3000,
});
``