Chapter 10: profiling recipe sample

This commit is contained in:
Beth Griggs
2020-08-15 17:33:37 +01:00
parent d74bfe94dc
commit 6c6df60315
10 changed files with 931 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
module.exports = router;