How to install Node.js on Windows Cloud Servers

2020-02-06 By Gary 3848 Views windows node.js development
28 reviews

Node.js is a free, open-source and cross-platform Javascript run-time environment to execute server-side Javascript code. It can be used to develop intensive and dynamic web applications such as video streaming sites and single-page applications. This tutorial will guide you on how to install Node.js on Windows server.


  1. Download the Node.js .msi Installer from the official website ( https://nodejs.org/en/download/ ).

  2. Run the Node.js installer from the downloaded folder.

  3. Welcome to the Node.js Setup Wizard, click Next.

    nodejs1

  4. Check the box I Accept the terms in the license Agreement and click Next.

    nodejs2

  5. Select the Destination Folder and click Next.

    nodejs3

  6. On Custom Setup, select the required features and click Next.

    nodejs4

  7. Tools for Native Modules are optional. Check the box Automatically install the necessary tools if needed and click Next.

    nodejs5

  8. Click Install to begin the installation.

    nodejs6

  9. After Node.js is successfully installed, click Finish.

    nodejs7

  10. To verify the Node.js was Properly installed, open CMD and type node -v , the command prompt will print the version Installed.

    nodejs8

  11. Now you may test Node.js.

  • Create a .js file with the help of any text editor. nodejs10

  • Copy and paste the following into the newly created file and save it as it with the .js extension.

    var http = require('http');

    http.createServer(function (req, res) {

    res.writeHead(200, {'Content-Type': 'text/html'});

    res.end('Hello World!');

    }).listen(8080);

    nodejs10

  • Open a web browser, and enter the URL into the address bar.

    http://localhost:8080

    Hello World will be displayed in the browser.

    nodejs9


Related Tutorials

What do you think about this article?

Rate this article
Need assistance?

Try this guide to receive free bundled services at signup on a new free account.

Sign Up

Your Feedback Is Important

We hope you’ll give the new products and updates a try. If you have an idea for improving our products or want to vote on other user ideas so they get prioritized, please submit your feedback on our Community platform. And if you have any questions, please feel free to ask in the Community or contact our Technical Support team.