Skip to content

Instantly share code, notes, and snippets.

@3rd-Eden
Forked from 140bytes/LICENSE.txt
Created May 26, 2011 18:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3rd-Eden/993688 to your computer and use it in GitHub Desktop.
Save 3rd-Eden/993688 to your computer and use it in GitHub Desktop.
HTTP server in 140 bytes
function(
a // port number
,b // placeholder for the server instance
){
return b=require('http') // require the http module
.createServer(function( // create a new httpserver
q // request object
,r // response object
){
r.writeHead(200); // set the correct status code
r.end('') // send the response
})
,b.listen(a) // listen on port `a` for requests
,b // return server instance
}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
function(a,b){return b=require('http').createServer(function(q,r){r.writeHead(200);r.end('')}),b.listen(a),b}
{
"name": "server",
"description": "Creates a new http server",
"keywords": [
"nodejs",
"http",
"server"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment