Installing Node

We will need Node.js to run JavaScript code in our IDE.

Setting up Node

Installing Node on your computer also installs the NPM Command Line Interface (CLI), which allows you to run specialized commands in the terminal .

  1. Follow this link to the Node website , and examine the selection screen:

  2. The LTS version of Node is an older, reliable build that has been tested, debugged, and runs well. The Current version brings in newer features, but it is still being tested. Either option works for this course, but we recommend downloading the LTS version.

  3. Click on the Windows or MacOS icon to download the installer to your computer. If you have a different operating system, select its 64-bit option from the list below the icons.

  4. Run the installation program and follow the on-screen instructions.

    1. Accept the license agreement.
    2. When asked for the installation location, etc., use the default options.
  5. Verify that the installation was successful by opening a new terminal window and running the command node -v. The output should match the version you downloaded.

    $ node -v
    v##.##.#
    
    Note

    After installing new programs, you will need to open a new terminal window to run their commands for the first time. This includes node both Node.js and Git. If you see a ‘_ is not recognized as an internal or external command’ error (Windows) or ‘command not found’ error (Mac), this might be the case.

    Note

    At the time of this walkthrough was last updated, December 2023, the LTS version of node is 20.9.0. As long as your node version is 20.x.x then you should not encounter any issues within this book.

  6. Troubleshooting: If it doesn’t install, try adding sudo before npm and then run the command again.