Skip to content

Instantly share code, notes, and snippets.

@zoek1
Created June 8, 2012 08:13
Show Gist options
  • Save zoek1/2894425 to your computer and use it in GitHub Desktop.
Save zoek1/2894425 to your computer and use it in GitHub Desktop.
Servidor de nodejs con coffescript
Servidor = require 'http'
Servidor.createServer (peticion,respuesta) ->
respuesta.writeHead(200 , "Constent-type" : "text/html")
respuesta.end("<h1> hola mundo </h1>")
.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment