Node.js 的 REPL
Node.js 本身使用 repl
模块来提供自己的交互界面来执行 JavaScript。
这可以通过执行 Node.js 二进制文件而不传入任何参数(或通过传入 -i
参数)来使用:
$ node
> const a = [1, 2, 3];
undefined
> a
[ 1, 2, 3 ]
> a.forEach((v) => {
... console.log(v);
... });
1
2
3
Node.js itself uses the repl
module to provide its own interactive interface
for executing JavaScript. This can be used by executing the Node.js binary
without passing any arguments (or by passing the -i
argument):
$ node
> const a = [1, 2, 3];
undefined
> a
[ 1, 2, 3 ]
> a.forEach((v) => {
... console.log(v);
... });
1
2
3