---
url: https://gudhub.com/uk/docs/ssr-ssg/node-installing/
title: "Node installing\n                #"
description: "This article explains how to install the node js for using in the development. Open the terminal on your devise or press Ctrl+Alt+T. !The opened terminal Then e"
lang: uk
updated: 2026-09-12T04:05:59.111Z
---

# Node installing [#](https://gudhub.com/uk/docs/ssr-ssg/node-installing/#node-installing)

This article explains how to install the node js for using in the development.

## Step 1 [#](https://gudhub.com/uk/docs/ssr-ssg/node-installing/#step-1)

Open the terminal on your devise or press Ctrl+Alt+T.

![The opened terminal](https://bitbucket.org/AAtlas/gudhub-documentation/raw/master/SSR_SSG/ssr-ssg-images/opened-terminal.jpg "Terminal")

## Step 2 [#](https://gudhub.com/uk/docs/ssr-ssg/node-installing/#step-2)

Then enter the following command in the opened terminal:

Копіювати

```js
   sudo apt install nodejs
```

![Command to install the Node JS](https://bitbucket.org/AAtlas/gudhub-documentation/raw/master/SSR_SSG/ssr-ssg-images/install-node-js.jpg "Installing Node JS")

After that check the installation using command:

Копіювати

```js
    node -v
```

![Command for checking the node version](https://bitbucket.org/AAtlas/gudhub-documentation/raw/master/SSR_SSG/ssr-ssg-images/node-version.jpg "Node version checking")

## Step 3 [#](https://gudhub.com/uk/docs/ssr-ssg/node-installing/#step-3)

After that you have to install the NPM. To do that enter the command in terminal:

Копіювати

```js
    sudo apt install npm
```

![Command for installing the npm](https://bitbucket.org/AAtlas/gudhub-documentation/raw/master/SSR_SSG/ssr-ssg-images/install-npm.jpg "NPM installation")

To check its version use command:

Копіювати

```js
    npm -v
```

![Command for checking the NPM version](https://bitbucket.org/AAtlas/gudhub-documentation/raw/master/SSR_SSG/ssr-ssg-images/npm-version.jpg "NPM version")
