11 lines
255 B
JavaScript
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!');
|
|
});
|
|
|