Git Product home page Git Product logo

Comments (6)

vic1707 avatar vic1707 commented on June 19, 2024

also sometimes each time I get the base URL I get the log for Nest application successfully started 🤔
image

from vite-plugin-node.

vic1707 avatar vic1707 commented on June 19, 2024

adding the if (import.meta.env.PROD) because I'm an idiot seems to fix the duplicate instance but doesn't fix the restart(?) of the app after each get
image

from vite-plugin-node.

vic1707 avatar vic1707 commented on June 19, 2024

when I run the production version I still get two instances
image

here's my new main.ts

import { Logger } from '@nestjs/common';
import { NestFactory } from '@nestjs/core';
import { DocumentBuilder, SwaggerCustomOptions, SwaggerModule } from '@nestjs/swagger';

import { ApiModule } from './api.module';

if (process.env.NODE_ENV === 'production') {
  (async () => {
    const PORT = process.env.API_PORT || 3000;
    const app = await NestFactory.create(ApiModule);

    const config = new DocumentBuilder()
      .setTitle('Cats example')
      .setDescription('The cats API description')
      .setVersion('1.0')
      .addTag('cats')
      .build();

    const swaggerCustomOptions: SwaggerCustomOptions = {};

    const document = SwaggerModule.createDocument(app, config);
    SwaggerModule.setup('api', app, document, swaggerCustomOptions);

    Logger.log(`Server running on 'localhost:${PORT}'`, 'Bootstrap');
    await app.listen(PORT);
  })();
}

export const viteNodeApp = NestFactory.create(ApiModule);

from vite-plugin-node.

sebastiangug avatar sebastiangug commented on June 19, 2024

I think with the repo here: #58 --- this can be reproduced and tested against as it is merely a symptom of this issue.

from vite-plugin-node.

MarioJuniorPro avatar MarioJuniorPro commented on June 19, 2024
let instance;

export const NestHandler: RequestAdapter<INestApplication> = async ({
  app,
  req,
  res,
}) => {
  if (!instance) {
    await app.init();
    instance = app.getHttpAdapter().getInstance();
  }

  // Todo: handle nest-fastify case

  instance(req, res);
};

from vite-plugin-node.

axe-me avatar axe-me commented on June 19, 2024

closing along #67 merge

from vite-plugin-node.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.