-
200请求成功查看全部
-
EventEmit 类下生成事件对象, life = new EventEmit(); on 方法 监听事件 ,emit方法触发(发射)事件; life.setMaxListeners(11) ; // 设置事件最大监听(针对每种事件) 默认为10个 官方说明超过十个会造成内存泄露,最好不要超过十个 life.on( eventname, function(arg){} ); // 监听的时间和事件触发后执行的函数 life.emit( eventname, arg); // 触发的事件和需要传递的形参 emit 方法的返回值为true 或 false, 如果事件监听过为true,没有监听过为false life.listeners(eventName);//返回监听器数组 EventEmitter.listenerCount(life,eventName);//返回监听器个数 life.removeAllListeners(eventName);//移除所有监听器查看全部
-
Stalled 等待时机,浏览器要发生请求,到能发生请求的时间 Proxy negotiation 代理协商的时间 Request sent 请求时间 Waiting(TTFB) 请求发出后至收到第一个字节响应的时间 Content Download 接收第一个字节到最后一个字节花费的时间 状态码 1xx 请求已经接收 2xx 请求成功并处理成功 200:OK 3xx 重定向 4xx 客户端错误 400:客户端请求有语法错误 401:请求未经授权 403:收到请求,但不提供服务 5xx 服务器端错误 500:服务器端未知错误 503:服务器端当前不能处理请求查看全部
-
npm install cheerio查看全部
-
非阻塞,单线程,事件驱动查看全部
-
1xx 请求已经接收 2xx 请求成功并处理成功 3xx 重定向 4xx 客户端错误 5xx 服务器端错误查看全部
-
200 ok 400 客户端语法错误 401 客户端请求没有经过授权 403 服务端收到请求但拒绝提供服务 404 请求资源不存在 500 服务端不可预知错误 501 服务端目前不能处理查看全部
-
querystring.escape() 转义 querystring.unescape() 反转义查看全部
-
querystring.stringify() 记住是stringify string-ify if-y querystring.parse()查看全部
-
parse解析 format格式化 host主机 hostname域名 query查询字符串查看全部
-
URL 是URI 的子集查看全部
-
nodejs常关注的4个网站 www.npmjs.com nodejs.org github.com stackoverflow.com查看全部
-
Administrator@PC201603021029 MINGW64 /d/wamp1/bin/apache/apache2.4.17/bin $ ls ab.exe* httpd.exe* libapr-1.dll* nghttp2.dll* abs.exe* httxt2dbm.exe* libapriconv-1.dll* openssl.exe* ApacheMonitor.exe* iconv/ libaprutil-1.dll* pcre.dll* apr_crypto_openssl-1.dll* icudt54.dll@ libeay32.dll@ php.ini@ apr_dbd_odbc-1.dll* icuin54.dll@ libhttpd.dll* php5ts.dll@ apr_ldap-1.dll* icuio54.dll@ libpq.dll@ rotatelogs.exe* dbmmanage.pl icule54.dll@ libsasl.dll@ ssleay32.dll@ htcacheclean.exe* iculx54.dll@ libssh2.dll@ wintty.exe* htdbm.exe* icutest54.dll@ libxml2.dll* zlib1.dll* htdigest.exe* icutu54.dll@ logresolve.exe* htpasswd.exe* icuuc54.dll@ lua51.dll* Administrator@PC201603021029 MINGW64 /d/wamp1/bin/apache/apache2.4.17/bin $ ab -n1000 -c10 http://localhost:2015/ This is ApacheBe查看全部
-
作用域 和 执行上下文 apply 和 call 函数本身是对象类型(object{array ,date,function....},number,string,boolean,undifined,null)查看全部
-
nodejs常关注的4个网站 www.npmjs.com nodejs.org github.com stackoverflow.com查看全部
举报
0/150
提交
取消