Skip to content

Instantly share code, notes, and snippets.

@ccckmit
Last active August 29, 2015 14:16
Show Gist options
  • Save ccckmit/b1184d2df88578a79c48 to your computer and use it in GitHub Desktop.
Save ccckmit/b1184d2df88578a79c48 to your computer and use it in GitHub Desktop.
helloHtmServer.js
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('<html><head><meta charset="UTF-8"></head><body><a href="http://tw.yahoo.com">yahoo</a> Hello World 你好!</body></html>\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment