Skip to content

Instantly share code, notes, and snippets.

@kleutzinger
Created March 13, 2020 07:34
Show Gist options
  • Save kleutzinger/1281f67b74e68382aca55cddf821f5d0 to your computer and use it in GitHub Desktop.
Save kleutzinger/1281f67b74e68382aca55cddf821f5d0 to your computer and use it in GitHub Desktop.

const express = require('express'); const app = express();

app.get('/', (req, res) => { res.send(Hello ${req.}); });

app.listen(3000);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment