Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit 9ecdf88

Browse files
committed
2 parents fe4ff9a + bf403d3 commit 9ecdf88

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const express = require('express');
2+
3+
const app = express();
4+
5+
app.all('*', (req, res) => res.status(200).send('Hello Wolrd'));
6+
7+
app.listen(3000, () => console.log('Server is running on 3000'));

0 commit comments

Comments
 (0)