Initial express.js project structure

This commit is contained in:
2022-05-24 18:09:21 -04:00
parent 603e01f2cf
commit 59f3a45347
7 changed files with 1054 additions and 9 deletions

3
routes/index.js Normal file
View File

@ -0,0 +1,3 @@
exports.home = function(req, res, next) {
res.send('Hello World!');
};