I started learning nodejs and stopped at the lesson where the server is created, here is the code for this script:
var http = require('http'); // Import Node.js core module
var server = http.createServer(function (req, res) { //create web server
if (req.url == '/') { //check the URL of the current request
// set response header
res.writeHead(200, { 'Content-Type': 'text/html' });
// set response content
res.write('<html><body><p>This is home Page.</p></body></html>');
res.end();
}
else if (req.url == "/student") {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.write('<html><body><p>This is student Page.</p></body></html>');
res.end();
}
else if (req.url == "/admin") {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.write('<html><body><p>This is admin Page.</p></body></html>');
res.end();
}
else
res.end('Invalid Request!');
});
server.listen(5000); //6 - listen for any incoming requests
console.log('Node.js web server at port 5000 is running..')
I experiment on a remote machine (google cloud virtual machine), run the script using node (I see a message in the console that the server is running) but if I go to the IP address through the browser (for example http://92.233.12.12:5000/) I don't I see the result, what am I doing wrong? did not find any additional information, everywhere in the lessons access through localhost:5000/ ...