Last active
December 15, 2015 04:38
-
-
Save bjartwolf/5202606 to your computer and use it in GitHub Desktop.
Til kidsakoder
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 kristian = http.createServer(function (trine, truls) { | |
truls.writeHead(200, {'Content-Type': 'text/plain'}); | |
truls.end('Vi er da for sv@rt€ ikke kids!!! \n'); | |
}); | |
kristian.listen(process.env.port || 8080); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment