ch04s09 Add build-app project for lab

This commit is contained in:
Ivan Chavero
2019-07-15 14:57:04 -05:00
parent 702686c81d
commit 4463a8bae2
2 changed files with 25 additions and 0 deletions

11
build-app/app.js Normal file
View 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!');
});