header-tester.js 229 B

1234567891011
  1. const express = require('express');
  2. const app = express();
  3. const port = 8080;
  4. app.get('*', (req, res) => {
  5. res.send(req.headers);
  6. });
  7. app.listen(port, () => {
  8. console.log(`Server listening at http://localhost:${port}`);
  9. });