1.4 Markdown书写
var http = require('http'); http.createServer(function(req,res){ res.writeHead(200, {'Content-Type':'text/html'}); res.end('hello,hexo!'); }).listen(8080);
Last updated
var http = require('http');
http.createServer(function(req,res){
res.writeHead(200, {'Content-Type':'text/html'});
res.end('hello,hexo!');
}).listen(8080);Last updated