http://news.cnblogs.com/n/193893/https://nodejstools.codeplex.com/ 微软发布了一个官方插件“Node.js Tools for Visual Studio(NTVS)”,为 Visual Studio IDE 引入 Node.js ....
分类:
Web程序 时间:
2014-09-25 15:39:49
阅读次数:
185
首先要了解PCP是干嘛的,pcp=parallel concurrent process,一般是multi-concurrent node它提供并发的服务并且是高可用性的.如果主节点当掉,会自动切换到被节点,当主节点起来会自动切回去.下面我简单说明下配置方法:1.确认APPLDCP是否设置为ON在v...
分类:
其他好文 时间:
2014-09-25 13:03:18
阅读次数:
302
How to use The following example attaches socket.io to a plain Node.JS HTTP server listening on port 3000. var server = require(‘http‘).createServer(); var io = require(‘socket.io‘)(server); io.on(...
分类:
其他好文 时间:
2014-09-25 12:35:39
阅读次数:
273
1 2 3 1234564 @section MasterPart{"/Home/About"}5 XML节点中有小数点怎么办?怎么引用它的xpath呢?在百度没找到答案,于是google:how to deal with xml node name includedot?Get it!其实很简.....
分类:
其他好文 时间:
2014-09-25 11:46:39
阅读次数:
551
问题描述:用jquery的ajax加载html片段,出现该错误HierarchyRequestError:Node cannot be inserted at the specified point in the hierarchy解决:未指定加载数据返回类型,即dataType,注意不是datat...
分类:
其他好文 时间:
2014-09-25 00:54:17
阅读次数:
337
在这里写下模板。以后方便用#include #include #include #include #include #define max_size 3000using namespace std;const int best_size = max_size - 20;struct node{ .....
分类:
其他好文 时间:
2014-09-25 00:11:47
阅读次数:
208
#include //单向循环链表实现与遍历typedef struct Node { int data; struct Node *next;} Node;int main (){Node n1 = {1, NULL}; Node n2 = {2, NULL}; Node n3 = {3, NUL...
分类:
其他好文 时间:
2014-09-24 23:50:07
阅读次数:
277
确实有感而发,Nodejs真的发展太快了,这么说的原因有两点:自己去年冬天买了本《了不起的Node.js》,里面介绍Express的版本还是2.x.x;前些天小伙伴买了本《Node.js实战》,结果依赖的Express是3.x.x。尼玛如果安装目前新版的Express4,那么这些书中的例子连项目.....
分类:
其他好文 时间:
2014-09-24 23:41:18
阅读次数:
335
2014.09.24修改\template\win8mi_2nd_caps\forum\viewthread_node_body.php注释126行 目的:隐藏主题操作记录-->
分类:
其他好文 时间:
2014-09-24 22:15:57
阅读次数:
229
一、在Windows平台上安装Node.js及NPM,mysql等模块管理
1、下载Node.js官方Windows版程序和npm
http://nodejs.org/#download
https://github.com/isaacs/npm/tags
2、创建D:\nodejs目录,并将node.exe保存在这个目录中。并将"D:\nodejs"加入系统环境变量PATH中,便于在任意...