From 2d471ed0e4eeb3238eaed2ae2ae3b9855b71b79f Mon Sep 17 00:00:00 2001 From: naveedkhan8067 <38525837+naveedkhan8067@users.noreply.github.com> Date: Sat, 25 May 2024 11:16:45 +0200 Subject: [PATCH] Update README.md --- components/hello-world/README.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/components/hello-world/README.md b/components/hello-world/README.md index 589b212..f339383 100644 --- a/components/hello-world/README.md +++ b/components/hello-world/README.md @@ -1,8 +1,19 @@ # Hello-World -This component displays platform specific hello world message. +This component displays a platform-specific hello world message. +## Build and test the Code -## Prerequisite: - -[Node.js](https://nodejs.org/en): It requires node.js version 18.x. +1. Navigate to `./components/hello-world/` through Command Line +2. Do installations using the following command: + ``` + npm install + ``` +3. Now build the code with the following command: + ``` + npm run build + ``` +4. To execute the test cases of this component run the associated command. + ``` + npm run test + ```