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, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/16717983.html
未经授权禁止转载,违者必究!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 【自荐】一款简洁、开源的在线白板工具 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 的安装,使用,注意事项!