Skip to content

Instantly share code, notes, and snippets.

@codenirvana
Created August 10, 2018 10:09
Show Gist options
  • Save codenirvana/819d1600b1fccda24bfa8d35483e013b to your computer and use it in GitHub Desktop.
Save codenirvana/819d1600b1fccda24bfa8d35483e013b to your computer and use it in GitHub Desktop.
Simple HTTP Echo Server in Node.js
require('http')
.createServer((req, res) => req.pipe(res))
.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment