Created
March 25, 2016 19:25
-
-
Save franrios/6f058549d28eb0f288c5 to your computer and use it in GitHub Desktop.
server.js
This file contains 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 server = http.createServer().listen(8080, function () { | |
console.log('Listening on port 8080...') | |
}) | |
server.on('request', function (req, res) { | |
res.write('Hello from Node.js fundamentals!\n') | |
res.end() | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment