diff --git a/guides/install-nodejs.md b/guides/install-nodejs.md index 9f8eb1a..4dc5636 100644 --- a/guides/install-nodejs.md +++ b/guides/install-nodejs.md @@ -10,7 +10,7 @@ dateCreated: 2023-06-26T10:43:59.640Z # Guide to Node.js Installation on Ubuntu 22.04 -Node.js is a popular open-source JavaScript runtime built on Chrome's V8 JavaScript engine. It allows you to build scalable and high-performance server-side applications using JavaScript. This guide will walk you through the installation process of Node.js 18 on Ubuntu 22.04. +Node.js is a popular open-source JavaScript runtime built on Chrome's V8 JavaScript engine. It allows you to build scalable and high-performance server-side applications using JavaScript. This guide will walk you through the installation process of Node.js on Ubuntu 22.04. ## Prerequisites @@ -44,7 +44,7 @@ curl -fsSL https://deb.nodesource.com/setup_version.x | sudo -E bash - This command fetches the setup script from the NodeSource repository and pipes it to the bash shell with elevated privileges (sudo), allowing it to modify system files. -Once the setup script has been executed, you can install Node.js 18 by running the following command: +Once the setup script has been executed, you can install Node.js by running the following command: ```bash sudo apt install -y nodejs @@ -63,4 +63,4 @@ You should see the version numbers of Node.js and npm printed in the terminal, i ## Finished -Congratulations! You have now installed Node.js 18 on your Ubuntu 22.04 machine. Node.js is ready to be used for developing your JavaScript applications. +Congratulations! You have now installed Node.js on your Ubuntu 22.04 machine. Node.js is ready to be used for developing your JavaScript applications.