Node.js CLI Input
In this tutorial, we will learn how to get user input in a Node.js CLI application. To do this, you will need to listen to STDIN (Standard Input), which Node.js exposes as process.stdin, a readable stream.
Streams are used to deal with I/O. You can l...
blog.zolomohan.com5 min read