Initial commit

This commit is contained in:
talksik
2022-03-12 13:59:24 -05:00
commit b341a7ed28
32 changed files with 34753 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const express = require('express');
const app = express();
app.use((req, res, next) => {
console.log('Time: ', Date.now());
next();
});
app.get('/', (req, res) => {
res.send('Successful response.');
});
app.listen(5000, () => console.log('Example app is listening on port 5000.'));