Herve Quatremain
2019-09-19 f6dd2f14d9e0426c0ed3d64e4bedc597cb368de4
Port changed from 3000 to 8080
1 files modified
4 ■■■■ changed files
express-helloworld/app.js 4 ●●●● patch | view | raw | blame | history
express-helloworld/app.js
@@ -5,7 +5,7 @@
  res.send('Hello World!\n');
});
app.listen(3000, function () {
  console.log('Example app listening on port 3000!');
app.listen(8080, function () {
  console.log('Example app listening on port 8080!');
});