new approach

This commit is contained in:
Marc Wäckerlin
2018-10-30 12:51:23 +01:00
parent 875e596732
commit 7096587f3a
74 changed files with 139 additions and 35837 deletions

9
routes/index.js Normal file
View File

@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res) {
res.render('index', { title: 'Express' });
});
module.exports = router;