dependabot[bot]
2019-10-23 2eac59e25e9692aea2eabe0bbb01a41cbf79166c
commit | author | age
f7cd89 1 var express = require('express');
JS 2 app = express();
3
4 app.get('/', function (req, res) {
5   res.send('Hello World!');
6 });
7
8 app.listen(8080, function () {
9   console.log('Example app listening on port 8080!');
10 });
11