Running a Test Site via NodeJS on a VPS Server
Let's now launch our site so that it is available online through a browser. To do this, let's go to the site folder:
cd /var/www/test.com
And run the startup command:
node app.js
After that, you should enter in your browser the address, which should contain your server's IP and the port of the test script:
http://12.345.678.90:3000/
Launch the site and open it through your browser.