
Node
Farmwang
博采众长,兼收并蓄!
展开
-
nodejs log4js
const log4js = require('log4js');log4js.configure({ appenders: { xcLogFile: { type: "file", filename: './logs/log4j.log',//您要写入日志文件的路径 alwaysIncludePat转载 2017-10-17 19:27:57 · 317 阅读 · 0 评论 -
JSON.tringify(results)的前后比较
原创 2017-11-14 17:21:15 · 344 阅读 · 0 评论 -
10npm: relocation error: npm: symbol SSL_set_cert_cb, version libssl.so.10 not defined in file libss
node 安装ws 模块是时报错原创 2017-10-17 10:40:50 · 7293 阅读 · 2 评论 -
websocket
WebSocket compressionws supports the permessage-deflate extension which enables the client and server to negotiate a compression algorithm and its parameters, and then selectively apply it to the转载 2017-10-16 14:35:13 · 957 阅读 · 0 评论 -
Node Client (2)
var ws = new WebSocket("ws://localhost:13002"); ws.onopen = function(e) { //连接时触发 openx(); }; function sendMessage() { // ws.send($('#message').val()); ws.send('hello'原创 2017-10-16 13:34:35 · 451 阅读 · 0 评论 -
Node Client code
//var ws = new WebSocket("ws://localhost:13002"); var onOpen = function() { console.log("Socket opened."); socket.send("Hi, Server!"); },原创 2017-10-16 13:33:27 · 432 阅读 · 0 评论 -
nodejs npm常用命令
npm是一个node包管理和分发工具,已经成为了非官方的发布node模块(包)的标准。有了npm,可以很快的找到特定服务要使用的包,进行下载、安装以及管理已经安装的包。1、npm install moduleNames:安装Node模块安装完毕后会产生一个node_modules目录,其目录下就是安装的各个node模块。node的安装分为全局模式和本地模式。一般情况下会以本转载 2017-10-16 11:24:38 · 272 阅读 · 0 评论 -
'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefor
原创 2017-11-07 07:22:03 · 374 阅读 · 0 评论 -
forever
为foreverforever可以看做是一个nodejs的守护进程,能够启动,停止,重启我们的app应用。官方的说明是说:复制代码代码如下:A simple CLI tool for ensuring that a given script runs continuously (i.e. forever).// 一个用来持续(或者说永远)运行一个给定脚本的简单的命令行工具转载 2017-10-17 20:24:14 · 436 阅读 · 0 评论 -
forever 安装后无法使用
1:查找安装 path: find -name ‘forever’2:echo $PATH3: vim /etc/profile保存,退出,然后运行: #source /etc/profile原创 2017-10-17 20:08:38 · 1551 阅读 · 0 评论 -
解决$.ajax()请求异常 jQuery提示parsererror错误解决办法
原创 2017-11-15 12:20:33 · 3621 阅读 · 0 评论