Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Last active December 15, 2015 04:38
Show Gist options
  • Save bjartwolf/5202606 to your computer and use it in GitHub Desktop.
Save bjartwolf/5202606 to your computer and use it in GitHub Desktop.
Til kidsakoder
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