Commands in the Node.js REPL
Written by Stefan Judis
- Published at
- Updated at
- Reading time
- 1min
This post is part of my Today I learned series in which I share all my web development learnings.
Today my friend Dominik shared that there are special commands available in the Node.js REPL.
There are seven Node.js REPL commands:
.break .clear .exit .help .save .load .editor
My favorite is the
command which you can use to write JavaScript going beyond one line right in the REPL.
And then there's also
and
to store and restore REPL sessions. These commands come in handy when moving out of the REPL again to export the executed code or start a REPL session quickly with a given state.
If you enjoyed this article...
Join 5.5k readers and learn something new every week with Web Weekly.
Reply to this post and share your thoughts via good old email.