Skip to main content

Getting Started with Node.js

Welcome to the Node.js documentation! This guide will help you get started with Node.js and provide you with the necessary steps to set up your development environment.

Prerequisites

Before you begin, make sure you have the following installed on your machine:

  • Node.js: Visit the official Node.js website (https://nodejs.org) and download the latest LTS (Long Term Support) version for your operating system.
  • npm (Node Package Manager): npm is included with Node.js, so once you have Node.js installed, you'll also have npm.

Installation

To install Node.js, follow these steps:

  1. Download the installer package for your operating system from the official Node.js website.

  2. Run the installer and follow the instructions provided.

  3. After the installation is complete, open a terminal or command prompt and run the following command to verify that Node.js and npm are installed correctly:

    node -v
    npm -v