DO288-apps/build-app/app.js
2019-05-23 13:13:16 -04:00

11 lines
255 B
JavaScript

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!');
});