随笔分类 -  NodeJs

摘要:一、web服务器示例var http = require('http');http.createServer(function(req, res){ res.writeHeader(200, {Content-Type : 'text/plain'}); res.end('hello w... 阅读全文

posted @ 2014-08-04 21:31 Hellohuman 阅读(232) 评论(0) 推荐(0)

摘要:一、node模块化机制1、commonJS模块规范包括三部分:模块引用、模块定义、模块标识。例如://math.jsexports.add = function(){ var sum = 0; var args = arguments; var len = args.length; for(... 阅读全文

posted @ 2014-07-27 20:49 Hellohuman 阅读(184) 评论(0) 推荐(0)

导航