Richard Allred
2019-08-03 99e73490b45f1f76040216418afeec9ff9770e57
commit | author | age
497620 1 var express = require('express');
RA 2 app = express();
3
4 app.get('/', function (req, res) {
5   res.send('Hello World!\n');
6 });
7
8 app.listen(8080, function () {
9   console.log('Example app listening on port 8080!');
10 });
11