-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
34 lines (20 loc) · 733 Bytes
/
server.js
File metadata and controls
34 lines (20 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const express = require('express');
const fetch = require('node-fetch');
const redirectToHTTPS = require('express-http-to-https').redirectToHTTPS;
function startServer() {
const app = express();
app.use(redirectToHTTPS([/localhost:(\d{4})/], [], 301));
app.use((req, resp, next) => {
const now = new Date();
const time = `${now.toLocaleDateString()} - ${now.toLocaleTimeString()}`;
const path = `"${req.method} ${req.path}"`;
const m = `${req.ip} - ${time} - ${path}`;
console.log(m);
next();
});
app.use(express.static('public'));
return app.listen('8000', () => {
console.log('Local DevServer Started on port 8000...');
});
}
startServer();