node项目中用到的一些模块
Posted zhaobao1830
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node项目中用到的一些模块相关的知识,希望对你有一定的参考价值。
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
以上是关于node项目中用到的一些模块的主要内容,如果未能解决你的问题,请参考以下文章
CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段