add nodejs express project with basic navigation

This commit is contained in:
Tim Wundenberg
2021-07-28 11:42:39 +02:00
parent 25f02ed8a5
commit b3ba65db5a
17 changed files with 1167 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});
module.exports = router;