search
HomeWeb Front-endJS TutorialA brief discussion on how to obtain the program exit code in NodeJS

How to get the NodeJS program exit code? The following article will introduce to you the method of obtaining the Node.js program exit code and the exit code enumeration. I hope it will be helpful to you!

A brief discussion on how to obtain the program exit code in NodeJS

To exit the running NodeJS program, we can either use Ctrl C or process.exit() to execute exit. [Recommended study: "nodejs Tutorial"]

Both operations will force the process to exit as soon as possible, even if there are still incomplete asynchronous operations pending, including for process I/O operations for .stdout and process.stderr.

If the Node.js process needs to be terminated due to an error condition, it is safer to throw an uncaught error and allow the process to terminate accordingly rather than calling process.exit(), such as:

import process from 'process';

// 如何正确设置退出码,同时让进程正常退出。
if (someConditionNotMet()) {
  printUsageToStdout();
  process.exitCode = 1;
}

In a Worker thread, this function stops the current thread instead of the current process.

So how to get the exitCode for some NodeJS programs that exit unexpectedly? What does each exit code mean? Let’s learn about it today.

Get the exit code through the child_process child process of NodeJS

The child_process.fork() method is a special case of child_process.spawn(), specially used to spawn new NodeJS processes.

const fork = require("child_process").fork;

console.log("main ", process.argv);

const fs = require("fs");

const fd = fs.openSync("./a.log", "a");

const child = fork("./index.js", {
    stdio: ["ipc", "pipe", fd]
});

child.on("error", (error) => {
    let info = `child process error ${error}`;
    fs.writeSync(fd, info);
    console.log(info);
});

child.on("exit", (code) => {
    let info = `child process exited with code ${code}`;
    fs.writeSync(fd, info);
    console.log(info);
});

Subroutine execution parameters

const fork = require('child_process').fork;

console.log('main ',process.argv);

const fs=require('fs');

const fd = fs.openSync('./a.log','a');

// 子程序参数
let args = [];
args[0] = 'test';

const child = fork('./index.js',args,{
    stdio:['ipc','pipe',fd]
});

child.on('error', (error) => {
    let info = `child process error ${error}`;
    fs.writeSync(fd,info);
    console.log(info);
});

child.on('exit', (code) => {
    let info = `child process exited with code ${code}`;
    fs.writeSync(fd,info);
    console.log(info);
});

NodeJS exit code

NodeJS usually exits with 0 status code when there are no more asynchronous operations pending quit. Use the following status code in other cases:

  • 1 Uncaught Fatal Exception: An uncaught exception exists and it is not covered by a domain or 'uncaughtException' Event handler processing.
  • 2: Unused (reserved by Bash for built-in misuse)
  • 3 Internal JavaScript parsing error: Internal JavaScript source code during NodeJS bootstrapping causes parsing errors. This is extremely rare and usually only happens during the development of NodeJS itself.
  • 4 Internal JavaScript evaluation failed: The internal JavaScript source code during NodeJS bootstrapping failed to return a function value when evaluated. This is extremely rare and usually only happens during the development of NodeJS itself.
  • 5 FATAL ERROR: An unrecoverable fatal error exists in V8. Normally a message prefixed with FATAL ERROR will be printed to standard error.
  • 6 Internal exception handler for non-function: There is an uncaught exception, but the internal fatal exception handler is somehow set to a non-function and cannot be called.
  • 7 Internal exception handler runtime failure : An uncaught exception existed, and the internal fatal exception handler function itself threw an error when trying to handle it. This would occur, for example, if the 'uncaughtException' or domain.on('error') handle threw an error.
  • 8: Not used. In previous versions of NodeJS, exit code 8 sometimes indicated an uncaught exception.
  • 9 Invalid parameter: An unknown option was specified, or an option requiring a value was provided without a value.
  • 10 Internal JavaScript runtime failure: The internal JavaScript source code during NodeJS bootstrap throws an error when calling the bootstrap function. This is extremely rare and usually only happens during the development of NodeJS itself.
  • 12 Invalid debug parameter: --inspect and/or --inspect-brk options are set , but the selected port number is invalid or unavailable.
  • 13 Unfinished top-level await: await is used outside a function in top-level code, but the Promise passed in Never resolved.
  • >128 Signal exit: If NodeJS receives a fatal signal, such as SIGKILL or SIGHUP, then Its exit code will be plus the value of the signal code. This is standard POSIX practice, since exit codes are defined as 7-bit integers, and signal exits set the high bit and then contain the value of the signal code. For example, the value of signal SIGABRT is 6, so the expected exit code would be 6 or 134 .

Summary

The above is the method to obtain the exit code of the NodeJS program and the exit code enumeration.

~This article is over, thank you for reading!

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of A brief discussion on how to obtain the program exit code in NodeJS. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node.js gm是什么node.js gm是什么Jul 12, 2022 pm 06:28 PM

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

火了!新的JavaScript运行时:Bun,性能完爆Node火了!新的JavaScript运行时:Bun,性能完爆NodeJul 15, 2022 pm 02:03 PM

今天跟大家介绍一个最新开源的 javaScript 运行时:Bun.js。比 Node.js 快三倍,新 JavaScript 运行时 Bun 火了!

nodejs中lts是什么意思nodejs中lts是什么意思Jun 29, 2022 pm 03:30 PM

在nodejs中,lts是长期支持的意思,是“Long Time Support”的缩写;Node有奇数版本和偶数版本两条发布流程线,当一个奇数版本发布后,最近的一个偶数版本会立即进入LTS维护计划,一直持续18个月,在之后会有12个月的延长维护期,lts期间可以支持“bug fix”变更。

聊聊Node.js中的多进程和多线程聊聊Node.js中的多进程和多线程Jul 25, 2022 pm 07:45 PM

大家都知道 Node.js 是单线程的,却不知它也提供了多进(线)程模块来加速处理一些特殊任务,本文便带领大家了解下 Node.js 的多进(线)程,希望对大家有所帮助!

node爬取数据实例:聊聊怎么抓取小说章节node爬取数据实例:聊聊怎么抓取小说章节May 02, 2022 am 10:00 AM

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

深入浅析Nodejs中的net模块深入浅析Nodejs中的net模块Apr 11, 2022 pm 08:40 PM

本篇文章带大家带大家了解一下Nodejs中的net模块,希望对大家有所帮助!

怎么获取Node性能监控指标?获取方法分享怎么获取Node性能监控指标?获取方法分享Apr 19, 2022 pm 09:25 PM

怎么获取Node性能监控指标?本篇文章来和大家聊聊Node性能监控指标获取方法,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.