Skip to content

Instantly share code, notes, and snippets.

@head1firstcorp
Last active June 16, 2025 16:32
Show Gist options
  • Save head1firstcorp/f19016830edacf6d70a8a2be19f37df2 to your computer and use it in GitHub Desktop.
Save head1firstcorp/f19016830edacf6d70a8a2be19f37df2 to your computer and use it in GitHub Desktop.
Node home
console.log('This example is different!');
console.log('The result is displayed in the Command Line Interface');
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World!');
}).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment