Marek Czernek
2020-02-18 d3b6fa27b03665eae8915137a621fbb516be84f4
1
2
3
4
5
6
7
8
9
10
var express = require('express');
app = express();
 
app.get('/', function (req, res) {
  res.send('Simple app for the Building Applications Lab!\n');
});
 
app.listen(8080, function () {
  console.log('Simple app for the Building Applications Lab!');
});