REPL Terminal
REPL (Read Eval Print Loop)
Window command, UNIX/LINUX Shell 처럼 사용자가 command를 입력하면 system이 값을 반환하는 환경을 가리킴
Node.js는 REPL 환경과 함께 제공되며, 다음과 같은 기능을 수행 할 수 있다
Read
: User의 값을 입력 받아 JavaScript data 구조로 memory에 저장함
Eval
: 데이터를 처리 (Evaluate) 함
Print
: 결과값을 출력함
Loop
: Read, Eval, Print를 유저가
ctrl + c
를 두 번 눌러 종료할 때 까지 반복함
Node.js의 REPL 환경은 JavaScript code를 testing & debugging 할 때 유용하게 사용됨!
Starting REPL
REPL은 Shell / Console에 parameter 없이 node를 실행하여 시작할 수 있음
1. 간단한 표현식 사용
2. 변수 사용
다른 script 처럼, 변수에 값을 저장하고 나중에 다시 출력 할 수 있음
var
keyword를 사용하면명령어를 입력했을 때 변수의 값이 출력되지 않고,
var
keyword를 사용하지 않으면변수의 값이 출력 됨
**console.log()**를 통해 출력 할 수 있음
3. Multi-line Expression 사용
do-while loop REPL에서 실행해보기!
Underscore(_) Variable
Underscore variable은 최근 결과값을 지칭함!
REPL Commands
ctrl + c
: terminate the current command
ctrl + c
2번: terminate the Node REPL
ctrl + d
: terminate the Node REPL.
위/아래 키
: see command history and modify previous commands
Tab
: list of current commands
.help
: list of all commands
.break
: exit from multiline expression
.clear
: exit from multiline expression
.save [filename]
: save the current Node REPL session to a file
.load [filename]
: load file content in current Node REPL session
Stopping REPL
As mentioned above, use ctrl + c twice to come out of Node.js REPL
Last updated