How to stop VMware port error of 443 on XAMPP Control Panel v3.2.2

While starting the apache service in xampp control panel v3.2.2 shows error as below image

apache_error

To resolve this error follow steps one by one :

Step 1: 
Open Up 'httpd-ssl.conf' file by locating in 'C:\xampp\apache\conf\extra' directory or you can just open 'httpd-ssl.conf' file from xampp control panel by clicking on config button against apache service. 
httpd_conf_file


Step 2:
After opening 'httpd-ssl.conf' file look for the line 'Listen 443' by pressing 'Ctrl + f'

Step 3:
Go on that line Change port number to anything you want. I use 4440. ex. Listen 4440. and Replace every 443 string in that file with 4440.


Step 4:
After all changes done then Save 'httpd-ssl.conf' file.

 start_apache_service

If you are having any query and doubt regarding this configuration then you can ask in comments.  


Thank you !! 

Building Your First Node.js Express Server: A 'Hello World!' Tutorial

Here we will see how make a simple "Hello world!" program using node js 

Code :

#1. server.js
var express = require('express');
var app = express();

app.get('/', function (req, res) {
  res.status(200).send('Hello World!');
});

var port = process.env.PORT || 3000;

var server = app.listen(port, function() {
  console.log('Express server listening on port ' + port);
});


Steps to see the output of Program:

open cmd run server.js
"node server.js"
log:Express server listening on port 3000

& then

open link "http://localhost:3000/" in your browser and show result.

So, If you are having any query and doubt regarding this program then you can ask in comments. Thank You !!!