1) To create and start https server first, you will have to import https, http and fs modules which are inbuilt Node.js. You will also need to install express to create Node.js server. const express = require(‘express’) const app = express(); const https = require(‘https’); const http = require(‘http’); const fs = …
