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

Commit bf403d3

Browse files
authored
PR : Base code to build Reverse Proxy Server
PR : Base code to build Reverse Proxy Server
2 parents 020d5a5 + 57d3576 commit bf403d3

File tree

4 files changed

+1049
-0
lines changed

4 files changed

+1049
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

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)