-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
36 lines (32 loc) · 872 Bytes
/
server.js
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
35
36
var express = require('express');
var app = express();
var path = require("path");
var moment = require("moment");
// port ajusted to environment
var port = process.env.PORT;
app.get("/", function(req, res) {
res.sendFile(path.join(__dirname, "/index.html"));
});
app.get("/:date", function (req, res) {
var date = req.params["date"];
var unix = null;
var natural = null;
var regex = /^[0-9]*$/g;
if(regex.test(date)) {
unix = date;
natural = moment.unix(date).format("MMMM DD YYYY");
} else if (moment(date, "MMMM DD YYYY").isValid()) {
unix = moment(date).format("X");
natural = moment(date).format("MMMM DD YYYY");
} else {
unix = null;
natural = null;
}
res.send(JSON.stringify({
"unix": unix,
"natural": natural
}));
});
app.listen(port, function () {
console.log('Example app listening on port' + port);
})