Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Created November 18, 2021 21:59
Show Gist options
  • Select an option

  • Save LiorB-D/6380871d2676144a5093dbcaf9f772fb to your computer and use it in GitHub Desktop.

Select an option

Save LiorB-D/6380871d2676144a5093dbcaf9f772fb to your computer and use it in GitHub Desktop.
const http = require('http')
const fs = require('fs')
const server = http.createServer((req, res) => {
res.writeHead(200, { 'content-type': 'text/html' })
fs.createReadStream('PUT THE NAME OF YOUR HTML FILE HERE').pipe(res)
})
server.listen(process.env.PORT || 3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment