Express boilerplate

This commit is contained in:
Clément GOUIN
2019-06-19 10:36:45 +02:00
parent db03535ee9
commit f170b4c3ea
8 changed files with 9886 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
const express = require('express');
const app = express();
module.exports = function(/*config*/){
app.get('/', (req,res) => {
res.status(200).send('Hello World!');
});
return app;
};