Skip to content

Instantly share code, notes, and snippets.

@pprathameshmore
Created April 19, 2020 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pprathameshmore/5c813747b47c5a208812dd9a514f6e71 to your computer and use it in GitHub Desktop.
Save pprathameshmore/5c813747b47c5a208812dd9a514f6e71 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
app.get('/hi', (req, res) => {
res.send('Hi! Reverse Proxy');
});
app.listen(4000, () => console.log('Server running on 4000'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment