Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

187
Views
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 answers
Answer question

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!