Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

189
Vistas
What is the difference between process.exit() vs return when ending the process?

I wrote a code that ends the process under certain conditions, and when I write it as a return, it ends abnormally due to an over-memory error, and process.exit() ends normally.

P.S. My code is just only one function. So the two method quit the one function.

Can you explain the difference between the two methods when ending the process?

if(condition === true)
    process.exit();
if(condition === true)
    return;
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

return will only stop the function that contains the return statement. process.exit will stop all the running functions and stop all the tasks.

So when you call return it will stop the current function but execute the remaining functions.

about 4 years ago · Juan Pablo Isaza Denunciar

0

  1. Explicitly calling process.exit forcibly discards some pending asynchronous tasks.

Calling process.exit() will force the process to exit as quickly as possible even if there are still asynchronous operations pending that have not yet completed fully, including I/O operations to process.stdout and process.stderr.

-- https://nodejs.org/api/process.html#process_process_exit_code

  1. process.exit() prevents the beforeExit event from emitting.

The 'beforeExit' event is emitted when Node.js empties its event loop and has no additional work to schedule. Normally, the Node.js process will exit when there is no work scheduled, but a listener registered on the 'beforeExit' event can make asynchronous calls, and thereby cause the Node.js process to continue.

-- https://nodejs.org/api/process.html#process_event_exit

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda