Created
December 5, 2016 15:00
-
-
Save casprwang/822c9e7267d91d6915e0d59c730d8c49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http'); | |
var myServer = http.createServer(function(request, response) { | |
response.writeHead(200, {"Content-Type" : "text/html"}); | |
response.write('<h1>Roux Meetups</h1>'); | |
response.end(); | |
}); | |
myServer.listen(3000); | |
console.log('Go to http://localhost:3000 on your browser'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment