Hybrid Application
The hybrid application's an application with the connected microservice/s.
It's possible to combine the INestApplication with the endless number of the INestMicroservice instances.
TypeScript
const app = await NestFactory.create(ApplicationModule);
const microservice = app.connectMicroservice({
transport: Transport.TCP,
});
await app.startAllMicroservicesAsync();
await app.listen(3001);