Base project structure with express.js

This commit is contained in:
2021-09-03 19:12:54 -04:00
parent 3b6543ae19
commit e65b30edc1
7 changed files with 1659 additions and 2 deletions

3
routes/site.js Normal file
View File

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