Skip to content

Instantly share code, notes, and snippets.

@rich-97
Created August 20, 2017 23:03
Show Gist options
  • Save rich-97/bdfb1da5fc7dbf524ccbf986d509cc53 to your computer and use it in GitHub Desktop.
Save rich-97/bdfb1da5fc7dbf524ccbf986d509cc53 to your computer and use it in GitHub Desktop.
Echo server in nodejs.
const http = require('http')
const server = http.createServer()
server.on('request', function (req, res) {
req.pipe(res)
})
server.listen(8000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment