I successfully created an http express app and placed it on glitch.
Here is the code:
const app = require('express')();
const express = require('express');
const http = require('http').createServer(app);
app.use(express.static('./views'));
http.listen(3000, () => {
console.log('listening on 3000');
});
When I click on "view App" in a new window on glitch, the url is "**https://some-server-name.glitch.me/**"
Even though I have only set up HTTP, the URL shows HTTPS. Is it safe to use this website?