Skip to main content

Posts

Showing posts with the label REPL terminal REPLServer module

Node.js - REPL Terminal - Read Eval Print Loop

What is REPL ? The REPL stand for “ Read Eval Print Loop ” and The REPL module provides a “Read-Eval-Print-Loop” implementation.                     I.             Read – Read user inputs.                   II.             Eval – Evaluates the data structure.                 III.             Print – Print the result.                 IV.             Loop - Loops the above command until the user multiple presses. It is also...