From ac1cf06b72a3ed672fcf495535250381b2b85e7a Mon Sep 17 00:00:00 2001 From: Shivam Kotak Date: Wed, 12 Oct 2022 17:16:24 +0530 Subject: [PATCH] Add content for taking input from user (#2337) --- .../106-nodejs-command-line-apps/102-taking-input/readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/readme.md b/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/readme.md index 8fde021b3..4289311bf 100644 --- a/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/readme.md +++ b/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/readme.md @@ -1 +1,3 @@ -# Taking input \ No newline at end of file +# Taking input + +Node.js provides a few ways to take inputs from user, including the built-in `process.stdin` and `readline` module. There are also several third party packages like `prompts` and `Enquirer` built on top of `readline` that provide an easy to use and intuitive interface.