Skip to content

Instantly share code, notes, and snippets.

@modster
Last active December 30, 2022 18:21
Show Gist options
  • Save modster/b45afad83b3330b36a1f16cac709b409 to your computer and use it in GitHub Desktop.
Save modster/b45afad83b3330b36a1f16cac709b409 to your computer and use it in GitHub Desktop.
A Tiny Web Server
const http = require('http');
http.createServer().on('request', (request, response) => {
response.end('smoll server');
}).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment