diff --git a/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/101-printing-output/102-chalk.md b/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/101-printing-output/102-chalk.md
index f9415b384..b90b94d8c 100644
--- a/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/101-printing-output/102-chalk.md
+++ b/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/101-printing-output/102-chalk.md
@@ -1,6 +1,7 @@
# Chalk
-Chalk is used to style terminal strings.
+Chalk is a clean and focused library used to do string styling in your terminal applications. With it you can print different styled messages to your console like changing font colors, font boldness, font opacity and also the background of any message printed on your console.
Free Content
-Chalk GitHub Repository
+Chalk Docs
+Style Command Line Output with Chalk Package in Node.js
diff --git a/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/102-inquirer.md b/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/102-inquirer.md
index 356cfdbc7..aac441ad4 100644
--- a/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/102-inquirer.md
+++ b/content/roadmaps/107-nodejs/content/106-nodejs-command-line-apps/102-taking-input/102-inquirer.md
@@ -1,9 +1,12 @@
# Inquirer
-Inquirer.js is a collection of common interactive command line interfaces for taking inputs from user. It is promise based and supports chaining series of prompt questions together.
+Inquirer.js is a collection of common interactive command line interfaces for taking inputs from user.
+It is promise based and supports chaining series of prompt questions together, receiving text input, checkboxes, lists of choices and much more.
-Free Content
+You can use it to empower your terminal applications that need user input or to build your own CLI.
-Official Documentation
-How to make a CLI in Node.js with Inquirer
+Free Content
+Official Docs
How To Create Interactive Command-line Prompts with Inquirer.js
+How to make a CLI in Node.js with Inquirer
+Create an Interactive Node.js Command Line Tool using Inquirer