老师讲的很好,赞一个,有个小小的提议,老师写代码从来不加分号,觉得这样看代码还是有点不习惯,编辑器的小红点提示应该就是就是提示您的代码没有加分号
2017-03-06
最新回答 / Blue_zy
iterm2 + oh-my-zsh实现的,这篇博客说的很清晰http://www.cnblogs.com/sasuke6/p/4976070.html
2017-03-06
最赞回答 / 包容鸡
var http = require("http")var server = http.createServer(function(req,res){ res.writeHead(200,{'Content-type':'text/html'}) res.end('hellow w111orld\n')})server.listen(1337,'localhost')console.log('server running at http:localhost:1337')
2017-03-05