Skip to content

Commit

Permalink
Create Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
devopswithcloud authored Jun 28, 2023
1 parent 73f21d0 commit c1b130c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Steps to install node on ubuntu
## Update System Packages
sudo yum update

## Install Development Tools
sudo yum groupinstall "Development Tools"

## Install Node.js using NodeSource repository:
curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -
sudo yum install -y nodejs

## Verify the Node.js installation:
node -v
npm -v


# SOnar for node
```bash
npm run sonar
# If issues do following
npm cache clean --force
```

0 comments on commit c1b130c

Please sign in to comment.