From 09cebe6449021ebcfc756574b52b91f0e16951d1 Mon Sep 17 00:00:00 2001 From: Sachin Chaurasiya <sachinchaurasiyachotey87@gmail.com> Date: Tue, 29 Oct 2024 12:59:06 +0530 Subject: [PATCH] fix: improve OpenTelemetry Setup in a Nodejs Application article (#918) --- data/opentelemetry/nodejs.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/opentelemetry/nodejs.mdx b/data/opentelemetry/nodejs.mdx index f87ba734a..3f3b71b3a 100644 --- a/data/opentelemetry/nodejs.mdx +++ b/data/opentelemetry/nodejs.mdx @@ -72,10 +72,10 @@ node -v Steps to get the app set up and running: -1. **Make a directory and install express**<br></br> - Make a directory for your sample app on your machine. Then open up the terminal, navigate to the directory path and install express with the following command: +1. **Make a directory and install express and cors**<br></br> + Make a directory for your sample app on your machine. Then open up the terminal, navigate to the directory path and install express and cors with the following command: ``` - npm i express + npm i express cors ``` 2. **Create index.js**<br></br>