You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
349 B
JavaScript

4 years ago
let express = require('express');
var app = express();
app.get('/', function (req, resp){
let current_time = new Date().toISOString();
resp.send(`<h1>Hello K8s</h1><div><p>The current time is ${current_time}</p></div>`);
});
app.listen(8001, function(){
console.log('Listening on port 8001');
console.log(' http://localhost:8001');
});