标签:create 实现 col creat write 路径 代码 string target
1、http模块,用来搭建服务器
代码,简单服务器实现
1 var http = require(‘http‘); 2 http.createServer(function (request, response) { 3 response.writeHead(200, {"Content-Type": "text/plain"}); 4 response.write(‘hello word‘); 5 response.end(); 6 }).listen(8888)
2、url模块,处理url路径的值
3、querystring模块,处理字符串
参考文章:http://www.jianshu.com/p/aed6a885db61
4、fs模块,处理文件
参考文章:http://www.jianshu.com/p/5683c8a93511
标签:create 实现 col creat write 路径 代码 string target
原文地址:http://www.cnblogs.com/zhaobao1830/p/7508125.html