05 2016 档案

摘要:nodejs使用范围 直接在cmd命令行运行,在你的电脑上直接运行 可以搭建一个web服务器(express,koa) 一些基本的使用 modules是如何工作的 npm管理modules 搭建一个web服务器。 wow,that is awesome 首先当然是下载nodejs的安装包,这里就不再 阅读全文
posted @ 2016-05-08 11:36 IT-caijw 阅读(300) 评论(0) 推荐(0)
摘要:``` //继承 function inherits(ctor,superCtor){ ctor.super_ = superCtor; ctor.prototype = Object.create(superCtor.prototype,{ constructor : { value : ctor, emumerable : false, writable : true... 阅读全文
posted @ 2016-05-07 22:17 IT-caijw 阅读(206) 评论(0) 推荐(0)
摘要:``` Document People Add Person ``` ``` $(function(){ var people = (function(){ var people = ['will','steve']; ... 阅读全文
posted @ 2016-05-04 11:52 IT-caijw 阅读(168) 评论(0) 推荐(0)