git name
2020-01-22 5454ebd40162281f44297db22ad16d3589553913
build-app/app.js
New file
@@ -0,0 +1,11 @@
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!');
});