ch04s09 Add build-app project for lab
This commit is contained in:
11
build-app/app.js
Normal file
11
build-app/app.js
Normal 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!');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user