xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

How to exit Node.js REPL environment All In One

How to exit Node.js REPL environment All In One

.break & .exit

.break: When in the process of inputting a multi-line expression, enter the .break command (or press Ctrl+C) to abort further input or processing of that expression.

.exit: Close the I/O stream, causing the REPL to exit.

https://nodejs.org/api/repl.html#commands-and-special-keys

process.exit() & process.exitCode

process.exit(1);


process.exitCode = 1;

https://nodejs.dev/en/learn/how-to-exit-from-a-nodejs-program/

exit Node.js REPL methods

#  double press ✅
$ Ctrl + C

# or ✅
$ Ctrl + C
$ Ctrl + D

# or ✅
$ .exit


# or ✅
$ process.exit

# or ✅
$ process.exit(1)

exit()

quit()

demo

$  node -v
v16.14.2

$ node   
Welcome to Node.js v16.14.2.
Type ".help" for more information.
> exit
Uncaught ReferenceError: exit is not defined
> quit
Uncaught ReferenceError: quit is not defined
> 
(To exit, press Ctrl+C again or Ctrl+D or type .exit)
> .exit
➜  000-xyz git:(main) ✗ 

$  node
Welcome to Node.js v16.14.2.
Type ".help" for more information.
> process.exit()

$ node   
Welcome to Node.js v16.14.2.
Type ".help" for more information.
> process.exitCode = 1;
1
> 
(To exit, press Ctrl+C again or Ctrl+D or type .exit)
> process.exit(1)

refs

https://www.digitalocean.com/community/tutorials/how-to-use-the-node-js-repl

process.exit

https://stackabuse.com/how-to-exit-in-node-js/

https://stackoverflow.com/questions/5266152/how-to-exit-in-node-js



©xgqfrms 2012-2025

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @   xgqfrms  阅读(41)  评论(1编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
历史上的今天:
2021-09-22 js scroll page's dom in to view All In One
2020-09-22 二叉搜索树 & 二叉树 & 遍历方法 All In One
2020-09-22 js swap array
2020-09-22 社保卡跨省异地结算
2016-09-22 MyScript©计算器 (数学公式手动输入后自动转换成标准Math的格式)
2016-09-22 Python关键字查询
2015-09-22 sublime text 3 的安装,使用,注意事项!
点击右上角即可分享
微信分享提示