nodejs学习
摘要:
代码var http = require('http');http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n');})... 阅读全文
posted @ 2015-02-21 15:57 cutepig 阅读(211) 评论(0) 推荐(0) 编辑