Created
November 2, 2022 09:45
-
-
Save jabed-web-dev/763cc21e59e511e767d0f6e59a2b4f5c to your computer and use it in GitHub Desktop.
pause nodejs console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| process.stdout.write('\n\x1b[0;32mPress any key to continue . . . \x1b[0m'); | |
| process.stdin.setRawMode(true); | |
| process.stdin.resume(); | |
| process.stdin.on('data', process.exit.bind(process, 0)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment