Initial express.js project structure

This commit is contained in:
2022-09-25 00:40:25 -04:00
parent 26a7ab742e
commit d71d78319a
8 changed files with 1728 additions and 24 deletions

3
routes/home.js Normal file
View File

@ -0,0 +1,3 @@
exports.getIndex = function(req, res) {
res.render('index');
};